@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');



/* Motorcycle Island Luxury Theme */
:root{
  --bg:#050607;
  --bg2:#0b0d10;
  --text:#e9eef5;
  --muted:#9aa6b2;
  --gold:#d7b56d;
  --gold2:#b8903b;
  --line:rgba(255,255,255,0.08);
  --radius:22px;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,'Inter', sans-serif;
  background: linear-gradient(180deg, #090909 0%, #141414 100%);
  color:var(--text);
  line-height:1.55; 
}

html,
body{

  min-height:100%;
  overflow-x:hidden;
  max-width:100%;
}



body{

  display:flex;

  flex-direction:column;

  min-height:100vh;
}



main{

  flex:1;
}



a{color:inherit;text-decoration:none;}

header{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(5,6,7,0.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);

  overflow:visible;
}

body.menu-open{

  overflow:hidden;

  height:100vh;
}

body.menu-open .chatbot-launcher{

  display:none;
}

.nav{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  padding:12px 0;

  flex-wrap:nowrap;
  
  position:relative;
  
  width:100%;
  
  min-width:0;
}

.nav-links{

  display:flex;

  align-items:center;
  
  justify-content:center;

  gap:clamp(18px, 2vw, 42px);

  margin-left:auto;

  min-width:0;
  
  flex-wrap:nowrap;
  
  position:relative;
  
  width:100%;
}

.nav-links ul {
  display:flex;
  gap:clamp(10px,2vw,30px);
}

.nav-right{

  display:flex;

  align-items:center;

  gap:14px;

  margin-left:auto;

  flex-shrink:0;
}



.brand{

  margin-right:auto;
  flex-shrink:0;
}


.brand{display:flex;align-items:center;gap:10px;font-weight:700;}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg, rgba(215,181,109,0.95), rgba(184,144,59,0.75));
  display:grid;place-items:center;
  color:#111;font-weight:900;font-size:15px;
}
nav ul{

  list-style:none;

  display:flex;

  align-items:center;

  gap:clamp(10px,1vw,18px);

  flex-wrap:nowrap;
}


nav a{color:var(--muted);font-weight:700;font-size:14px;padding:8px 10px;border-radius:12px;transition:0.2s;}
nav a:hover{color:var(--text);background:rgba(255,255,255,0.05);}
.cta{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#121212;font-weight:900;border:none;padding:10px 14px;border-radius:14px;cursor:pointer;margin-left:auto; white-space:nowrap;
}
section{padding:60px 0;}
.section-title{font-size:30px;margin-bottom:10px;}
.section-sub{color:var(--muted);margin-bottom:26px;max-width:100%;}
.hero{padding:70px 20px; text-align:center;}
.hero-grid{

  display:grid;

  grid-template-columns:
    minmax(0,1.4fr)
    minmax(340px,0.8fr);

  gap:28px;

  align-items:stretch;
}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr;}}
.hero-title{

  font-size:
    clamp(42px, 5vw, 82px);

  line-height:1.05;

  letter-spacing:-0.03em;
  
}
.badge{
  display:inline-block;padding:7px 12px;border-radius:999px;
  border:1px solid rgba(215,181,109,0.3);
  background: rgba(215,181,109,0.07);
  color: var(--gold);font-weight:900;font-size:12px;
}
.card{
  border-radius: var(--radius);
  padding:18px;
  overflow-wrap:break-word;
  word-break:normal;
  position:relative;
  background:
	linear-gradient(
	145deg,
	rgba(20,20,20,0.95),
	rgba(8,8,8,0.98)
	);

  backdrop-filter: blur(12px);

  box-shadow:
	0 0 20px rgba(212,175,55,0.08);

  border:
	1px solid rgba(212,175,55,0.15);
  transition:
    border-color .3s ease,
    box-shadow .3s ease;
	all .35s ease;
	
  
}

.card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:2px;

background:
linear-gradient(
90deg,
transparent,
#d4af37,
transparent
);

opacity:.8;
}

  
	

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
@media(max-width:900px){.grid-3,.grid-2{grid-template-columns:1fr;}}

.btn.primary{background: linear-gradient(135deg, var(--gold), var(--gold2));border:none;color:#111;}

.input{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,0.35);
  color:var(--text);
  width:100%;
  font-size: 14px;
}
.slot-btn{
  margin-top:10px;padding:10px 12px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,0.03);cursor:pointer;font-weight:900;display:inline-block;
}
.slot-btn.selected{border-color: rgba(215,181,109,0.6);background: rgba(215,181,109,0.08);color: var(--gold);}
.package-btn.selected{border-color: rgba(215,181,109,0.6);background: rgba(215,181,109,0.08);color: var(--gold);}
hr.sep{border:none;height:1px;background: var(--line);margin: 18px 0;}
footer{border-top:1px solid var(--line);padding:30px 0;color:var(--muted);font-size:13px;background: rgba(0,0,0,0.25);}
.footer-links{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap;}
.footer-links a{color:var(--muted);font-weight:800;}
.footer-links a:hover{color:var(--text);}



/* ===== PREMIUM EDITION UPGRADE ===== */


.logo img {
  height: 42px;
  transition: 0.4s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.6));
}



.cta,
.cart-link,
.lang-switcher {
  flex-shrink:0;
}




.card:hover {
  transform: translateY(-6px);
   border-color:
    rgba(255,215,0,.3);

  box-shadow:
    0 20px 40px rgba(0,0,0,.4),
	0 0 20px rgba(212,175,55,.15);
}

.section-title {
  font-weight: 800;
  letter-spacing: 1px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer {
  border-top: 1px solid rgba(255,215,0,0.15);
}



/* =========================
   ABOUT PREMIUM STATS
========================= */

.about-stats{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  gap:18px;

  margin-top:35px;

  margin-bottom:35px;
}



.stat-card{

  position:relative;

  padding:28px 20px;

  border-radius:20px;

  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.96),
      rgba(7,7,7,.98)
    );

  border:
    1px solid rgba(212,175,55,.14);

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  gap:14px;

  text-align:center;

  overflow:hidden;

  transition:.35s ease;
}



.stat-card i{

  font-size:28px;

  color:#d4af37;
}



.stat-card span{

  font-size:15px;

  font-weight:600;

  color:#f5f5f5;
}



.stat-card:hover{

  transform:
    translateY(-8px);

  border-color:
    rgba(212,175,55,.35);

  box-shadow:
    0 20px 40px rgba(0,0,0,.4),
    0 0 25px rgba(212,175,55,.12);
}


.about-icon{

  color:#d4af37;

  margin-right:12px;

  width:18px;
}



/* =========================
   EXPERIENCE TIMELINE
========================= */

.experience-section{

  margin-top:40px;
}



.timeline{

  position:relative;

  margin-top:50px;

  padding-left:40px;
}



.timeline::before{

  content:"";

  position:absolute;

  left:8px;

  top:0;

  width:2px;

  height:100%;

  background:
    linear-gradient(
      to bottom,
      rgba(212,175,55,.7),
      transparent
    );
}



.timeline-item{

  position:relative;

  margin-bottom:45px;
}



.timeline-dot{

  position:absolute;

  left:-40px;

  top:10px;

  width:18px;

  height:18px;

  border-radius:50%;

  background:#d4af37;

  box-shadow:
    0 0 15px rgba(212,175,55,.45);
}



.timeline-content{

  padding:24px;

  border-radius:20px;

  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.96),
      rgba(8,8,8,.98)
    );

  border:
    1px solid rgba(212,175,55,.12);
}



.timeline-content h3{

  margin-bottom:10px;

  color:#fff;
}



.timeline-content p{

  color:#aaa;

  line-height:1.7;
}


.premium-line{

  color:#d4af37;

  font-size:15px;

  letter-spacing:2px;

  text-transform:uppercase;

  margin-bottom:22px;

  opacity:.9;
}

.background-glow{

  position:fixed;

  inset:0;

  pointer-events:none;

  z-index:-2;

  background:

    radial-gradient(
      circle at 20% 20%,
      rgba(212,175,55,.07),
      transparent 30%
    ),

    radial-gradient(
      circle at 80% 40%,
      rgba(212,175,55,.05),
      transparent 35%
    ),

    radial-gradient(
      circle at 50% 80%,
      rgba(212,175,55,.04),
      transparent 40%
    );
}




/* ===== ULTRA ELITE EDITION ===== */




h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeOut 2.5s ease forwards;
  animation-delay: 1.8s;
}

.intro-overlay img {
  width: 180px;
  opacity: 0;
  animation: fadeInLogo 1.5s ease forwards;
}

@keyframes fadeInLogo {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 25px auto;
}

.success-particles {
  position: fixed;
  pointer-events: none;
  inset: 0;
  overflow: hidden;
  z-index: 4000;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4af37;
  opacity: 0.8;
  animation: floatUp 3s linear forwards;
}

@keyframes floatUp {
  from { transform: translateY(0); opacity:1; }
  to { transform: translateY(-300px); opacity:0; }
}



.btn{

  padding:12px 16px;

  border-radius:14px;

  border:none;

  background:
    linear-gradient(
      135deg,
      #d4af37,
      #f5d76e
    );

  color:#000;

  font-weight:700;

  cursor:pointer;

  transition:
    transform .15s ease,
    box-shadow .2s ease;
}



.btn:hover{

  transform:translateY(-1px);

  box-shadow:
    0 6px 18px rgba(212,175,55,.18);
}



.btn:active{

  transform:translateY(2px);
}



/* ===== Calender container ===== */

#calendar-container {
  margin-bottom: 20px;
  
}

#time-slots {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}

.slot-button {
  padding: 10px 0px;
  border: 1px solid rgb(255,255,255,0.1);
  background: rgb(255,255,255,0.04);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.1s ease;
  color: var(--text);
  font-size: 14px;
  
}

.slot-button:hover {
  background: #000;
  color: #fff;
}

.slot-button.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}


.cart-link {
	font-weight: bold;
	align-items:center;
	gap:6px;
	display:flex;
	text-decoration: none;
	white-space:nowrap;
}


/* Cart bounce animation */
.cart-bounce {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Toast */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: black;
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 4000;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}


.cart-option {
  font-size: 14px;
  margin-left: 15px;
  color: var(--muted);
}

.cart-option button {
  margin-left: 10px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-weight: 600;
}

/*       calendar          */


.flatpickr-calendar {
  background: #1c1c1c !important;
  color: #ddd !important;
  border: 1px solid #444;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border-radius: 16px;
}

.flatpickr-day {
  color: #ddd !important;
  border-radius: 8px;
}

.flatpickr-day:hover {
  background: rgba(212,175,55,0.15);
  color: #ddd !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: #d4af37;
  color: #000 ;
  font-weight: 700;
}


.flatpickr-monthDropdown-months {
  background: #0000 !important;
  color: #fff;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;
}

.flatpickr-monthDropdown-month {
  color: #fff;
  background: #808080 !important;
}

.flatpickr-monthDropdown-month:hover {
  background: rgba(255,215,0,0.2);
  color: #d4af37;
}

.flatpickr-current-month, .flatpickr-weekday {
  color: #ddd !important;
  font-weight: 600;
}

.flatpickr-current-month input.cur-year {
  color: #fff;
}


.flatpickr-day.today {
  border:1px solid #d4af37;
}

.flatpickr-arrow {
  fill: #d4af37;
    
}


/* Disabled days (not available) */
.flatpickr-day.disabled{
  color: rgba(255,255,255,0.15);
  background: transparent;
  cursor: not-allowed;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  opacity: 0.3;
}

.flatpickr-day.prevMonthDay.available,
.flatpickr-day.nextMonthDay.available {
  opacity: 1;
}


/* Available days */
.flatpickr-day:not(.disabled) {
  color: #ffffff;
}

/* Hover only on available */
.flatpickr-day:not(.disabled):hover {
  background: rgba(212,175,55,0.2);
}




/*      summary.html                 */


#summaryBox {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

#summaryBox h3 {
  color: #d4af37;
  margin-top: 20px;
}

#summaryBox ul {
  list-style: none;
  padding-left: 0;
}




/*    Summary         */

.summary-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.summary-left {
  background: #111;
  padding: 30px;
  border-radius: 10px;
}

.summary-right {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #d4af37;
  position: sticky;
  top: 100px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.service-row.option {
  font-size: 14px;
  color: #bbb;
  padding-left: 15px;
}

.invoice-box {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.invoice-row.total {
  font-size: 18px;
  font-weight: bold;
  color: #d4af37;
}

.btn.full {
  width: 100%;
  margin-top: 20px;
}




/*    proffesional       */

.countdown-box {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  padding: 15px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.policy-box {
  margin-top: 30px;
  padding: 20px;
  background: #121212;
  border-left: 3px solid #d4af37;
  font-size: 14px;
}

.company-details {
  font-size: 13px;
  margin-bottom: 20px;
  color: #bbb;
}


.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-sm {
  padding: 5px 11px;
  font-size: 12px;
}

.btn-xs {
  padding: 6px 12px;
  font-size: 14px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.btn-xs.icon-btn {
  font-size: 12px;
}

.service-inline{

  display:flex;
  align-items:center;
  width:100%;
  gap:12px;
  margin-bottom:10px;

}

.service-inline .icon-btn {
  padding: 6px 12px;
  font-size: 13px;
}



/*    Elegant spacing Cart     */


.cart-section {
  margin-bottom: 30px;
}

.cart-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 6px;
}



/* Cart */

.cart-section {
  margin-bottom: 36px;
}

.cart-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.cart-service {
  display:flex;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-direction:column;
  width:100%;
}

.cart-option {
  margin-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  padding: 6px 12px;
}


/*logo*/

.hero-banner{

  position:cover;

  width:100%;

  min-height:
    clamp(350px, 45vw, 560px);

  border-radius:20px;

  overflow:hidden;

  background-color:transparent;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:flex-end;

  text-align:center;

  margin-top:30px;

  padding:
    clamp(200px, 30vw, 320px)
    clamp(20px, 4vw, 50px)
    clamp(30px, 4vw, 60px);




  background-image:
    url("../assets/logo_flat.png");

  background-repeat:no-repeat;

  background-position:
    center center;

  background-size:
    /*clamp(1000px, 95%, 1800px);*/
	cover;
}




.hero-banner * {
  position: relative;
  z-index: 1;
}

.hero-motto{

  position:relative;

  z-index:2;

  font-size:
    clamp(20px, 2.1vw, 44px);

  font-weight:700;

  color:#000;

  text-align:center;


  max-width:1100px;

  margin-top:
    clamp(40px, 15vw, 70px);

}


.hero-subtext{

  position:relative;

  z-index:2;

  font-size:
    clamp(15px, 1.2vw, 24px);

  color:#111;


  text-align:center;

  max-width:900px;
  
}




@keyframes flyIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.hero-banner h1,
.hero-banner p,
.hero-banner .btn {
  animation: flyIn 1.2s ease forwards;
}





/*premium styling*/

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 40px;
}

.pricing-card {
  background: #111;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.15);
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card .price {
  font-size: 28px;
  color: #d4af37;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: #ccc;
}

/* FEATURED PACKAGE */
.pricing-card.featured {
  border: 2px solid #d4af37;
  transform: scale(1.05);
}

.pricing-card .badge {
  background: #d4af37;
  color: black;
  font-size: 12px;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 6px;
  font-weight: bold;
}

.lang-switcher {
  position: relative;
  flex-shrink:0;
}

.lang-menu {
  position: absolute;
  top: 35px;
  right: 0;
  background: #000;
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  display: none;
  min-width: 140px;
  overflow: hidden;
  z-index: 2100;
}

.lang-menu div {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  transition: 0.2s;
  
}

.lang-menu div:hover {
  background: rgba(255,215,0,0.1);
  color: #d4af37;
}

.lang-menu div:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lang-switcher .btn-xs {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
}


.container{

  
  width:min(100%, 1800px);

  margin-inline:auto;

  padding-inline:clamp(12px, 2vw, 32px);

}


/* Cookies and Tracking */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: white;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.3);
  max-width: 500px;
  width: 90%;
  z-index: 9000;
  transition: all 0.3s ease;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-settings {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.3);
  display: none;
  z-index: 10000;
}



.services-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap:18px;

  width:100%;

  align-items:stretch;

}



.services-grid .card{

  height:100%;

  display:flex;

  flex-direction:column;

  justify-content:flex-start;

}



.service-intro{
    padding:40px 0;
}

.intro-card{
    max-width:1100px;
    margin:0 auto;

    text-align:center;

    padding:60px;

    background:rgba(255,255,255,0.02);

    border:1px solid rgba(212,175,55,0.18);

    border-radius:30px;

    backdrop-filter:blur(8px);
	
	  box-shadow:
	0 0 20px rgba(212,175,55,0.08);

}

.intro-card h2{
    font-size:56px;
    margin:15px 0 25px;
}

.intro-card p{
    max-width:850px;
    margin:auto;

    color:var(--muted);

    line-height:1.9;
    font-size:18px;
}







/* ===== SCROLL REVEAL ===== */

.reveal{

  opacity:0;

  transform:translateY(60px);

  transition:
    opacity 1.5s ease,
    transform 1.5s ease;

  will-change:
    transform,
    opacity;
}



.reveal.active{

  opacity:1;

  transform:translateY(0);
}



/* stagger effect */

.reveal-delay-1{
  transition-delay:0.1s;
}

.reveal-delay-2{
  transition-delay:0.2s;
}

.reveal-delay-3{
  transition-delay:0.3s;
}

.reveal-delay-4{
  transition-delay:0.4s;
}

.reveal-delay-5{
  transition-delay:0.5s;
}

.reveal-delay-6{
  transition-delay:0.7s;
}

.reveal-delay-7{
  transition-delay:0.9s;
}

.reveal-delay-8{
  transition-delay:1.1s;
}

.reveal-delay-9{
  transition-delay:1.3s;
}

.reveal-delay-10{
  transition-delay:1.5s;
}

.reveal-delay-11{
  transition-delay:1.7s;
}

.reveal-delay-12{
  transition-delay:1.9s;
}
.reveal-delay-13{
  transition-delay:2.1s;
}
.reveal-delay-14{
  transition-delay:2.3s;
}

.reveal-delay-15{
  transition-delay:2.5s;
}

.reveal-delay-16{
  transition-delay:2.7s;
}

.reveal-delay-17{
  transition-delay:2.9s;
}

.reveal-delay-18{
  transition-delay:3.1s;
}

.reveal-delay-19{
  transition-delay:3.3s;
}

.reveal-delay-20{
  transition-delay:3.5s;
}


/* ======================================
   LUXURY FLOATING GOLD PANELS
====================================== */

.background-lines{

  position:fixed;

  inset:0;

  pointer-events:none;

  overflow:hidden;

  z-index:-1;
}



.background-lines::before{

  content:"";

  position:absolute;

  inset:-60%;

  background:
    repeating-linear-gradient(

      115deg,

      transparent 0px,

      transparent 140px,

      rgba(212,175,55,0.07) 241px,

      rgba(212,175,55,0.07) 340px,

      transparent 341px,

      transparent 420px

    );

  opacity:0.22;
  
  filter:blur(0.5px);

  animation:
    luxuryPanelsMove 9s ease-in-out infinite alternate;
}





/* movement */

@keyframes luxuryPanelsMove{

  from{

    transform:
      translate3d(-120px,0,0);
	  rotate(0deg);

  }

  to{

    transform:
      translate3d(120px,-80px,0);
	  rotate(0.6deg);

  }
}




/* keep content above effect */

section,
footer{

  position:relative;

  z-index:1;
}



.brand{

  display:flex;

  align-items:center;

  gap:14px;

  text-decoration:none;
}



.brand span{

  color:#fff;

  font-size:1.45rem;

  font-weight:700;

  letter-spacing:.2px;

  white-space:nowrap;
}



.mi-logo{

  width:65px;

  height:45px;

  /*object-fit:contain;*/

  display:block;

  transition:
    transform .35s ease,
    filter .35s ease;

  filter:
    drop-shadow(
      0 0 10px rgba(212,175,55,.18)
    );
}



.mi-logo:hover{

  transform:scale(1.06);

  filter:
    drop-shadow(
      0 0 18px rgba(212,175,55,.45)
    );
}


/* CHATBOT */

.chatbot-launcher{

  position:fixed;

  right:24px;

  bottom:24px;

  width:72px;

  height:72px;

  border-radius:50%;

  background:
    radial-gradient(
      circle at top,
      #f1d36b,
      #c89d2a
    );

  display:flex;

  align-items:center;

  justify-content:center;

  cursor:pointer;

  z-index:2000;

  box-shadow:
    0 0 25px rgba(212,175,55,.35);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
	
  animation:chatbotFloat 4s ease-in-out infinite;
}


@keyframes chatbotFloat{

  0%,100%{

    transform:translateY(0);
  }

  50%{

    transform:translateY(-6px);
  }
}


.chatbot-launcher:hover{

  transform:scale(1.08);

  box-shadow:
    0 0 35px rgba(212,175,55,.55);
}

.chatbot-logo{

  width:54px;

  height:54px;

  object-fit:contain;

  pointer-events:none;

  filter:
    brightness(0.15) sepia(1);
}
 

.chatbot-window{

  position:fixed;

  bottom:100px;

  right:24px;

  width:min(92vw,380px);

  height:min(78vh,700px);

  background:#111;

  border:1px solid rgba(212,175,55,.25);

  border-radius:18px;

  display:none;

  flex-direction:column;

  overflow:hidden;

  z-index:1500;
}



.chatbot-header{

  padding:16px 18px;

  background:#000;

  color:#fff;

  display:flex;

  justify-content:space-between;

  align-items:center;

  flex: 0 0 auto;
}



.chatbot-messages{

  flex:1 1 auto;

  overflow-y:auto;

  padding:16px;

  display:flex;

  flex-direction:column;

  gap:12px;
  
  min-height:0;
}



.chatbot-input{

  display:flex;

  gap:10px;

  padding:14px;

  background:#0d0d0d;

  margin-top:auto;

  flex:0 0 auto;
  
  align-items:center;
}




.chatbot-bubble{

  max-width:80%;

  padding:12px 14px;

  border-radius:14px;

  line-height:1.4;
}



.chatbot-user{

  align-self:flex-end;

  background:#d4af37;

  color:#000;
}



.chatbot-ai{

  align-self:flex-start;

  background:#1e1e1e;

  color:#fff;
}




.chatbot-input input{

  flex:1;

  background:#1a1a1a;

  border:none;

  border-radius:10px;

  padding:12px;

  color:#fff;
}



.chatbot-input button{

  background:#d4af37;

  border:none;

  padding:12px 16px;

  border-radius:10px;

  cursor:pointer;

  font-weight:700;
  color:#000;
}


.chatbot-header button{

  background:transparent;

  border:none;

  color:#d4af37;

  font-size:32px;

  cursor:pointer;

  padding:0;

  width:auto;

  height:auto;

  line-height:1;

  display:flex;

  align-items:center;

  justify-content:center;

  transition:.25s ease;
  
  z-index:1400;
}

.chatbot-header button:hover{

  transform:scale(1.15);

  color:#f5d76e;
}

.chat-close{

  background:transparent;

  border:none;

  color:#d4af37;

  font-size:42px;

  font-weight:300;

  cursor:pointer;

  line-height:1;

  padding:0;

  margin:0;

  display:flex;

  align-items:center;

  justify-content:center;

  transition:.25s ease;
}



.chat-close:hover{

  transform:scale(1.12);

  color:#f5d76e;
}





.card ul{

  padding-left:28px;

  margin-top:14px;

  margin-bottom:18px;

  list-style-position:outside;
}



.card ul li{

  margin-bottom:12px;

  line-height:1.7;

  color:#e8e8e8;
  
}

.card ol{

  padding-left:28px;

  margin-top:14px;

  margin-bottom:18px;

  list-style-position:outside;
}

.agb-title{

  text-align:center;

  margin-top:20px;

  margin-bottom:30px;
}



.mobile-toggle{

  display:none;

  width:48px;

  height:48px;

  border:none;

  background:none;

  cursor:pointer;

  position:relative;

  z-index:2000;
}



.mobile-toggle span{

  position:absolute;

  left:10px;

  width:28px;

  height:2px;

  background:var(--gold);

  border-radius:10px;

  transition:.35s ease;
}



.mobile-toggle span:nth-child(1){

  top:14px;
}



.mobile-toggle span:nth-child(2){

  top:22px;
}



.mobile-toggle span:nth-child(3){

  top:30px;
}


.mobile-toggle.active span:nth-child(1){

  transform:rotate(45deg);

  top:22px;
}



.mobile-toggle.active span:nth-child(2){

  opacity:0;
}



.mobile-toggle.active span:nth-child(3){

  transform:rotate(-45deg);

  top:22px;
}






@media (max-width:980px){

  .mobile-toggle{

    display:block;
  }



  .nav{

    justify-content:space-between;

    flex-wrap:nowrap;
  }



.nav-links{

  position:fixed;

  top:0;

  right:-100%;

  width:100%;

  height:100dvh;

  background:#050505;

  display:flex;

  flex-direction:column;

  align-items:flex-start;

  justify-content:flex-start;

  padding:120px 40px 140px;

  overflow-y:auto;

  overflow-x:hidden;

  transition:right .45s ease;

  z-index:7000;

  border:none;

  opacity:1;
}



  .nav-links ul{

    display:flex;

    flex-direction:column;

    width:100%;

    gap:28px;

    list-style:none;
  }


.nav-links.active{

  right:0;

  overflow-y:auto;
}



  .nav-links a{

    font-size:1.5rem;

    color:#fff;

    font-weight:700;
  }






.mobile-overlay{

  position:fixed;

  inset:0;
  
  background:rgba(0,0,0,.55);

  opacity:0;

  visibility:hidden;

  transition:.35s ease;

  z-index:1900;

  pointer-events:none;
}



 .mobile-overlay.active{

  opacity:1;

  visibility:visible;

  pointer-events:auto;
}


.mobile-extra-links{

  margin-top:50px;

  width:100%;

  display:flex;

  flex-direction:column;

  gap:24px;

  padding-bottom:120px;
}



.mobile-cart-link{

  font-size:1.2rem;

  font-weight:700;

  color:#d4af37;
}



.mobile-lang-switch{

  display:flex;

  gap:12px;
}


.nav-right{

  display:none;
}


}


.comment-text{

  color:#fff !important;

  font-size:15px;

  line-height:1.6;

  margin-top:12px;

  white-space:pre-wrap;

  word-break:break-word;

  opacity:1 !important;

  display:block !important;
}



/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1400px){

  .hero-banner{

    min-height:620px;
  }

}



/* =========================
   LAPTOP
========================= */

@media (max-width:1200px){

  .hero-banner{

    min-height:560px;
  }

  .hero-motto{

    margin-top:90px;
  }

}



/* =========================
   TABLET
========================= */

/* =========================
   HERO MOBILE FIXES
========================= */

@media (max-width:980px){

  .hero-banner{

    min-height:560px;

    background-size:95%;

    padding:
      260px
      24px
      50px;
  }

}

@media(max-width:900px){

.compare-card{
  grid-template-columns:1fr;
  padding:25px;
}

}



@media (max-width:768px){

  .hero-banner{

    min-height:480px;

    background-size:110%;

    background-position:
      center top;

    padding:
      220px
      20px
      40px;
  }

}



@media (max-width:480px){

  .hero-banner{

    min-height:420px;

    background-size:120%;

    padding:
      180px
      16px
      32px;
  }



  .hero-motto{

    line-height:1.25;
  }

}


.rating-wrapper{
  margin-bottom:20px;
}

.rating-label{
  display:block;
  margin-bottom:10px;
  font-weight:600;
  color:#fff;
}

.star-rating{
  display:flex;
  gap:10px;
  font-size:42px;
}

.star{

  cursor:pointer;

  color:#444;

  transition:0.2s ease;

  user-select:none;

}

.star.active{
  color:#d4af37;
}

.star:hover{
  transform:scale(1.1);
}


/* =========================
   PROCESS SECTION
========================= */

.process-section{

  padding:30px 0;
}



.center-heading{

  text-align:center;

  margin-bottom:60px;
}



.process-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

  gap:24px;
}



.process-card{

  position:relative;

  padding:38px 28px;

  border-radius:24px;

  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.97),
      rgba(7,7,7,.99)
    );

  border:
    1px solid rgba(212,175,55,.12);

  overflow:hidden;

  transition:.35s ease;
}



.process-card:hover{

  transform:
    translateY(-8px);

  border-color:
    rgba(212,175,55,.3);

  box-shadow:
    0 25px 50px rgba(0,0,0,.45),
    0 0 25px rgba(212,175,55,.1);
}

.process-card:hover .process-number{

    color:rgba(212,175,55,.55);

    transform:translateY(-3px);
	
	text-shadow:
        0 0 25px rgba(212,175,55,.35);
}



.process-number{

  font-size:90px;
  
  font-weight:900;

  color:rgba(212,175,55,.22);
  
  text-shadow:
        0 0 15px rgba(212,175,55,.12);

  line-height:1;

  margin-bottom:20px;
  
  opacity:0;
  
  transform:translateY(20px);
  
  transition:all .8s ease;
}



.process-card.active .process-number{
    opacity:1;
    transform:none;
}



.process-card h3{

  margin-bottom:12px;

  color:#fff;
}



.process-card p{

  color:#aaa;

  line-height:1.8;
}

.about-engineering{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    max-width:1400px;
    margin:80px auto;
}

.about-engineering .standards-card{
    height:100%;
}

/* =========================
   ENGINEERED STANDARDS
========================= */

.standards-section{

  margin-top:50px;

  margin-bottom:50px;
}



.standards-card{

  padding:60px;

  border-radius:30px;

  background:
    linear-gradient(
      145deg,
      rgba(16,16,16,.97),
      rgba(7,7,7,.99)
    );

  border:
    1px solid rgba(212,175,55,.14);

  position:relative;

  overflow:hidden;
}



.standards-card h2{

  font-size:42px;

  margin-bottom:24px;

  color:#fff;
}



.standards-card p{

  color:#aaa;

  line-height:2;

  max-width:850px;

  margin-bottom:40px;
}



.standards-points{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

  gap:18px;
}



.standards-points div{

  padding:20px;

  border-radius:16px;

  background:
    rgba(255,255,255,.02);

  border:
    1px solid rgba(212,175,55,.08);

  color:#f5f5f5;
}



.standards-points i{

  color:#d4af37;

  margin-right:10px;
}


/* =========================
   SERVICE COMPARISON
========================= */

.compare-section{
  padding:30px 0;
}

.compare-card{
  max-width:1200px;
  margin:60px auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;

  background:transparent;
  border:none;

  border-radius:24px;
  padding:40px;

  backdrop-filter:blur(8px);
  
  transition: all .4s ease;
}

.compare-card > div{
  background:rgba(255,255,255,0.02);

  border:1px solid rgba(212,175,55,0.12);

  border-radius:20px;

  padding:30px;
}

.compare-card h3{
  color:var(--gold);
  margin-bottom:25px;
  font-size:28px;
}

.compare-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.compare-card li{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
  color:#d8d8d8;
}

.compare-card li:last-child{
  border-bottom:none;
}




.service-signature{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:50px;
    color:#d4af37;
    text-align:center;
}

.gold-line{
    width:80px;
    height:1px;
    background:#d4af37;
}

/*
.compare-card li i{
    color:var(--gold);
    margin-right:10px;
}*/