﻿/* ===== MASTER RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* remove browser spacing */
h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
/* ===== SECTION SYSTEM ===== */
section {
  padding: 25px 20px;

}

section.compact {
  padding: 15px 20px;
}

/* remove double gaps between sections */
section + section {
  margin-top: 0 !important;
}
/* SECTION */
.aura-section {
  background: linear-gradient(180deg, #000, #111);
  padding: 12px 20px 20px;
  color: #fff;
}

/* CONTAINER */
.aura-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.aura-left {
  flex: 1;
}

/* HEADING */
.aura-main-heading {
  font-size: 34px;
  font-weight: 700;
  color: #f3c963;
  margin-bottom: 15px;
  margin-top: 0px;

}

/* DESCRIPTION */
.aura-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
    margin-bottom: 10px;

}

/* POINTS */
.aura-points {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.aura-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* BUTTON */
.aura-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f3c963, #b8860b);
  color: #000;
  padding: 14px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.3s;
}

.aura-btn:hover {
  transform: scale(1.05);
}

/* TRUST TEXT */
.aura-trust {
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
    margin-bottom: 0;

}

/* RIGHT IMAGE */
.aura-right {
  flex: 1;
  position: relative;
  text-align: center;
}

.aura-right img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* GLOW EFFECT */
.aura-glow-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f3c96333, transparent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .aura-section {
    padding: 8px 15px 14px;
  }

  .aura-container {
    flex-direction: column;
    text-align: center;
  }

  .aura-main-heading {
    font-size: 26px;
  }

  .aura-description {
    font-size: 15px;
  }

  .aura-right {
    margin-top: 0px;
  }

}
/* SECTION */
.lama-premium-section {
  background: linear-gradient(180deg, #000, #111);
  padding: 40px 20px 70px;
  color: #fff;
}

/* CONTAINER */
/* CONTAINER FIX */
.lama-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;

}

/* VIDEO BIGGER */
.lama-media video {
  border-radius: 15px;
}

/* MOBILE */
@media (max-width: 992px) {
  .lama-container {
    grid-template-columns: 1fr;
  }

  .lama-media {
    order: 1;
  }

  .lama-content {
    order: 2;
    text-align: center;
  }
}

.media-box video,
.media-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.lama-content {
  text-align: left;
}

/* HEADING */
.lama-heading {
  font-size: 32px;
  color: #f3c963;
  margin-bottom: 10px;
    margin-top: 0;

}

/* SUBHEADING */
.lama-subheading {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 25px;
}

/* POINTS */
.lama-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.point i {
  color: #f3c963;
  margin-top: 4px;
}

.point p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

/* HOVER EFFECT */
.media-box:hover {
  transform: scale(1.03);
  transition: 0.4s;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .lama-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lama-content {
    text-align: center;
  }

  .lama-heading {
    font-size: 26px;
  }

  .lama-subheading {
    font-size: 14px;
  }

  .point {
    justify-content: center;
    text-align: left;
  }
}
.outline-btn {
  border: 2px solid #f3c963;
  color: #f3c963;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #f3c963;
  color: #000;
}
.lama-cta-btn.gold {
  background: linear-gradient(45deg, #f3c963, #b8860b);
  color: #000;
}
@media (max-width: 768px) {

  .lama-cta-btn {
    display: block;              /* full width */
    width: 100%;
    text-align: center;

    padding: 14px;
    font-size: 15px;
  }

}
.lama-cta-btn.outline {
  border: 2px solid #f3c963;
  color: #f3c963;
  background: transparent;
}

.lama-cta-btn.outline:hover {
  background: #f3c963;
  color: #000;
}
/* SECTION */
.difference-section {
  background: #0a0a0a;
    padding: 10px 20px 45px;  /* 🔥 reduced top & bottom */
  color: #fff;
}

/* CONTAINER */
.diff-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.difference-heading {
  font-size: 30px;
  color: #f3c963;
  margin-bottom: 8px;
}

.difference-subtext {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 25px;
}

/* TRUST STRIP */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #f3c963;
}

.trust-label {
  font-size: 13px;
  color: #aaa;
}

/* GRID */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.difference-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #222;
}

.difference-card:hover {
  transform: translateY(-5px);
  border-color: #f3c963;
}

/* ICON */
.icon-circle {
  width: 45px;
  height: 45px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3c963;
}

/* TEXT */
.difference-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.difference-card p {
  font-size: 13px;
  color: #ccc;
}

/* MOBILE */
@media (max-width: 768px) {

  .difference-section {
    padding: 25px 15px 35px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-heading {
    font-size: 24px;
  }

}

/* ISSUE GRID */



/* ICON WRAP */
.icon-wrap {
  width: 65px;
  height: 65px;
  margin: auto;
  margin-bottom: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* SVG ICON FIX (VERY IMPORTANT) */
.custom-icon {
  width: 30px;
  height: 30px;
  stroke: #f3c963;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.3s;
}

/* ICON HOVER */

/* SECTION */
.clients-section {
  background: #000;
  padding: 40px 20px;
}

.clients-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.clients-title {
  color: #f3c963;
  font-size: 24px;
  margin-bottom: 8px;
}

.clients-subtitle {
  color: #ccc;
  margin-bottom: 20px;
}

/* SCROLL */
.clients-scroll {
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 15px;
  animation: scrollClients 22s linear infinite;
}

.client-card {
  min-width: 240px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.client-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.client-card p {
  padding: 10px;
  font-size: 13px;
}

/* SMOOTH ANIMATION */
@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .client-card {
    min-width: 80%;
  }
}

/* TEXT */

/* HOVER EFFECT */

/* MOBILE */
/* ICON STYLE */
.issue-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 12px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(circle, #ff4d4d33, transparent);
  color: #ff4d4d;
  font-size: 22px;

  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  transition: 0.3s;
}

/* HOVER EFFECT */

/* ================================
   ULTIMATE WORKSHOP SECTION
================================ */

.ultimate-workshop {
  background: linear-gradient(180deg, #000, #111);
  padding: 35px 20px 45px;
  color: #fff;
}

.uw-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.uw-alert {
  color: #f3c963;
  font-weight: 700;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 10px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  50% { opacity: 0.6; }
}

.uw-heading-main {
  font-size: 30px;
  line-height: 1.3;
  color: #f3c963;
  margin-bottom: 25px;
  font-weight: 700;
}

.uw-issues {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.uw-issue-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  transition: 0.3s ease;
  min-height: 145px;
}

.uw-issue-card:hover {
  transform: translateY(-5px);
  border-color: #f3c963;
  box-shadow: 0 0 18px rgba(243,201,99,0.15);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(243,201,99,0.08);
  border: 1px solid rgba(243,201,99,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(243,201,99,0.18);
}

.custom-icon {
  width: 20px;
  height: 20px;
  stroke: #f3c963;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.3s ease;
}

.uw-issue-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #ddd;
  margin: 0;
}

.uw-truth-box {
  margin-top: 25px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(243,201,99,0.10);
  color: #f3c963;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid rgba(243,201,99,0.20);
}

.uw-comparison {
  max-width: 1100px;
  margin: 30px auto 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.uw-box {
  padding: 22px;
  border-radius: 14px;
  text-align: left;
}

.uw-box.left {
  background: #1a0000;
  border: 1px solid #3a0000;
}

.uw-box.right {
  background: #001a00;
  border: 1px solid #003a00;
}

.uw-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.uw-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uw-box li {
  font-size: 14px;
  margin-bottom: 9px;
  color: #ddd;
}

.uw-heading {
  text-align: center;
  color: #f3c963;
  margin: 28px 0 18px;
  font-size: 28px;
  font-weight: 700;
}

.uw-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.uw-card {
  background: #111;
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid #222;
  position: relative;
  text-align: center;
  transition: 0.3s ease;
}

.uw-card.highlight {
  border: 2px solid #f3c963;
  box-shadow: 0 0 22px rgba(243,201,99,0.14);
}

.uw-card:hover {
  transform: translateY(-5px);
  border-color: #f3c963;
}

.uw-card h3 {
  color: #f3c963;
  font-size: 22px;
  margin-bottom: 15px;
}

.uw-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.uw-card li {
  margin-bottom: 9px;
  font-size: 15px;
  color: #ddd;
}

.uw-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: #f3c963;
  color: #000;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

.uw-badge.secondary {
  background: #555;
  color: #fff;
}

.uw-btn {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  padding: 13px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.uw-btn.gold {
  background: linear-gradient(45deg, #f3c963, #b8860b);
  color: #000;
}

.uw-btn.outline {
  border: 2px solid #f3c963;
  color: #f3c963;
  background: transparent;
}

.uw-btn:hover {
  transform: scale(1.03);
}

.uw-final {
  max-width: 1100px;
  margin: 30px auto 0;
  text-align: center;
}

.uw-final p {
  color: #ddd;
  font-size: 16px;
  margin-bottom: 15px;
}

.uw-main-btn {
  display: inline-block;
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.uw-main-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .uw-issues {
    grid-template-columns: repeat(2, 1fr);
  }

  .uw-comparison,
  .uw-cards {
    grid-template-columns: 1fr;
  }

  .uw-heading-main {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .ultimate-workshop {
    padding: 30px 15px 40px;
  }

  .uw-heading-main {
    font-size: 23px;
  }

  .uw-alert {
    font-size: 14px;
  }

  .uw-issues {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .uw-issue-card {
    min-height: auto;
    padding: 16px 14px;
  }

  .icon-wrap {
    width: 40px;
    height: 40px;
  }

  .custom-icon {
    width: 19px;
    height: 19px;
  }

  .uw-issue-card p {
    font-size: 14px;
  }

  .uw-box {
    padding: 18px;
  }

  .uw-heading {
    font-size: 23px;
  }

  .uw-card {
    padding: 25px 18px;
  }

  .uw-main-btn {
    width: 100%;
    padding: 14px;
  }
}

/* SECTION */

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 15px;
      margin-bottom: 0;

  }
}

/* CONTAINER */
.clients-container {
  max-width: 1100px;
  margin: 0 auto; /* removes top margin */
  text-align: center;
      margin-bottom: 0;
      margin-top: 0;

}


/* HEADING */
.clients-title {
  color: #f3c963;
  font-size: 24px;
  margin-bottom: 5px;
;
}

.clients-subtitle {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

/* SCROLL AREA */
.clients-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth scroll iOS */
}

/* HIDE SCROLLBAR */
.clients-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.client-card {
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 auto;

  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;

  scroll-snap-align: start;
  transition: 0.3s;
}

/* IMAGE */
.client-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* TEXT */
.client-card p {
  padding: 10px;
  font-size: 13px;
  color: #ddd;
}

/* HOVER */
.client-card:hover {
  transform: scale(1.05);
  border-color: #f3c963;
}

/* CTA */
.clients-cta a {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(45deg, #f3c963, #b8860b);
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .clients-title {
    font-size: 20px;
  }

  .client-card {
    min-width: 80%;  /* 👈 KEY FIX for mobile */
    max-width: 80%;
  }

}


.client-card p {
  padding: 10px;
  font-size: 14px;
}


.clients-scroll {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.clients-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  animation: scrollClients 20s linear infinite;
}

.client-card {
  min-width: 240px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.client-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Smooth GPU animation */
@keyframes scrollClients {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

/* Pause on hover */
.clients-track:hover {
  animation-play-state: paused;
}
/* ================================
   PREMIUM ROTATING AURA ALERT
================================ */

.aura-alert{
  width:100%;
  display:flex;
  align-items:center;
  gap:8px;

  background:rgba(255,77,77,0.08);
  border:1px solid rgba(243,201,99,0.22);
  color:#ffcc70;
  background: linear-gradient(90deg, #d4af37, #f3c963);

  padding:7px 10px;
  border-radius:12px;
  margin-bottom:8px;

  overflow:hidden;
  box-shadow:0 0 10px rgba(243,201,99,0.10);
}

/* ICON */
.alert-glow{
  flex:0 0 auto;
  font-size:14px;
  line-height:1;
  animation:pulseGlow 1.6s infinite;
}

/* TEXT AREA */
.alert-rotator{
  position:relative;
  flex:1;
  height:20px;
  overflow:hidden;
}

/* ROTATING TEXT */
.alert-rotator span{
  position:absolute;
  inset:0;

  display:flex;
  align-items:center;

  opacity:0;
  color:#fff;
background: linear-gradient(90deg, #d4af37, #f3c963);
  font-size:13px;
  font-weight:700;
  line-height:1.3;

  animation:rotateAlertText 12s infinite;
}

.alert-rotator span:nth-child(1){ animation-delay:0s; }
.alert-rotator span:nth-child(2){ animation-delay:4s; }
.alert-rotator span:nth-child(3){ animation-delay:8s; }

/* TEXT ANIMATION */
@keyframes rotateAlertText{
  0%{
    opacity:0;
    transform:translateY(7px);
  }

  8%{
    opacity:1;
    transform:translateY(0);
  }

  28%{
    opacity:1;
    transform:translateY(0);
  }

  36%{
    opacity:0;
    transform:translateY(-7px);
  }

  100%{
    opacity:0;
  }
}

/* ICON ANIMATION */
@keyframes pulseGlow{
  0%{
    transform:scale(1);
    opacity:1;
  }

  50%{
    transform:scale(1.10);
    opacity:0.72;
  }

  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* MOBILE SAFE */
@media(max-width:768px){

  .aura-alert{
    padding:7px 9px;
    border-radius:10px;
    gap:6px;
    align-items:center;
    margin-bottom:6px;
  }

  .alert-glow{
    font-size:13px;
  }

  .alert-rotator{
    height:32px;
  }

  .alert-rotator span{
    font-size:11.5px;
    line-height:1.32;
    text-align:left;
  }

}
    /* =========================================
   SAFE PREMIUM UI PATCH (NON-DESTRUCTIVE)
========================================= */

/* Softer luxury gold */
:root{
  --gold-soft:#f3c963;
  --text-soft:#d6d6d6;
}

/* ======================
   HEADINGS
====================== */

.aura-main-heading,
.lama-heading,
.uw-heading-main,
.uw-heading,
.difference-heading,
.clients-title{
  color:var(--gold-soft);
  line-height:1.45;
  letter-spacing:0.3px;
}

/* Reduce oversized yellow heading */
.uw-heading-main{
  font-size:28px;
}

.aura-main-heading{
  font-size:30px;
}

.lama-heading{
  font-size:30px;
}

/* Mobile */
@media(max-width:768px){

  .uw-heading-main{
    font-size:23px;
    line-height:1.5;
  }

  .aura-main-heading,
  .lama-heading{
    font-size:24px;
    line-height:1.5;
  }
}

/* ======================
   BODY TEXT
====================== */

.aura-description,
.lama-subheading,
.point p,
.difference-subtext,
.uw-issue-card p,
.uw-box li,
.client-card p,
.uw-final p,
.difference-card p{
  color:var(--text-soft);
  line-height:1.8;
}

/* ======================
   BUTTON GOLD FIX
====================== */

.aura-btn,
.uw-btn.gold,
.clients-cta a{
  background:linear-gradient(
    45deg,
    #f3c963,
    #c89b32
  );
}

/* ======================
   OUTLINE BUTTONS
====================== */

.outline-btn,
.uw-btn.outline,
.lama-cta-btn.outline{
  border-color:#f3c963;
  color:#f3c963;
}

/* ======================
   ICON GOLD
====================== */

.icon-circle,
.icon-wrap{
  border-color:rgba(243,201,99,0.20);
}

.custom-icon{
  stroke:#f3c963;
}

/* ======================
   TRUST BOX
====================== */

.uw-truth-box{
  background:rgba(243,201,99,0.08);
  border:1px solid rgba(243,201,99,0.18);
  color:#f3c963;
  line-height:1.7;
}

/* ======================
   ALERT BAR FIX
====================== */

.aura-alert{
  border:1px solid rgba(243,201,99,0.20);
  box-shadow:none;
}

.alert-rotator span{
  line-height:1.5;
  font-size:13px;
}

/* ======================
   CARD TEXT SPACING
====================== */

.uw-card li,
.uw-issue-card p,
.client-card p{
  line-height:1.7;
}

/* ======================
   HOVER EFFECTS SAFE
====================== */

.uw-card:hover,
.difference-card:hover,
.uw-issue-card:hover,
.client-card:hover{
  box-shadow:0 0 18px rgba(243,201,99,0.10);
}

/* ======================
   IMAGE RADIUS
====================== */

.client-card img,
.aura-right img,
.media-box video{
  border-radius:14px;
}
