:root {
    --black: #0c0c0c;
    --dark: #111;
    --white: #ffffff;
    --gold: #c9a14a;
    --gray: #888;
    --radius: 14px;
    --transition: all 0.35s ease;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* =========================================  NAVBAR======================================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 10px 40px;
}

.Elite_Pro_Logo {
  height: 50px;
  transition: height 0.3s ease;
}

/* =========================================
   DESKTOP NAVIGATION
========================================= */
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  position: relative;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}

.nav-list a:hover {
  color: #ffd700; /* Elegant gold hover */
  background: rgba(255, 255, 255, 0.05);
}

/* Submenu for desktop */
.nav-list li {
  position: relative;
}

.nav-list li ul {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.nav-list li:hover > ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-list li ul li a {
  display: block;
  padding: 10px 20px;
  font-weight: 400;
  transition: background 0.3s ease;
}

.nav-list li ul li a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

/* =========================================
   MOBILE MENU
========================================= */
.menu {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu:hover {
  color: #ffd700;
}

/* =========================================MOBILE NAV – FIXED========================================= */

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 998;
}

.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
}

/* Mobile main links */
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

/* Mobile submenu */
.mobile-nav li ul {
  max-height: 0;          /* hidden initially */
  opacity: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 12px;
  padding-left: 15px;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.mobile-nav li ul li a {
  font-weight: 400;
  font-size: 1rem;
}

/* Submenu toggle active */
.mobile-nav li ul.active {
  max-height: 500px; /* enough to show submenu */
  opacity: 1;
}



/* =========================================================
   HERO SECTION
========================================================= */
.product-hero {
  padding: clamp(120px, 12vw, 160px) 20px clamp(80px, 10vw, 120px);
  background: linear-gradient(120deg, #000, #000000);
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

/* ================= TEXT ================= */
.product-content {
  max-width: 560px;
}

.badge {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.product-content h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  margin-bottom: 18px;
}

.subtitle {
  color: #cccccc;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ================= FEATURES ================= */
.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  font-size: clamp(13px, 2vw, 14px);
  margin-bottom: 10px;
  color: #e0e0e0;
}

/* ================= ACTION BUTTONS ================= */
.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201,161,74,0.1);
}

/* ================= IMAGE ================= */
.product-image {
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 460px;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-content {
    margin: auto;
  }

  .actions {
    justify-content: center;
  }
}

/* =========================================================
   LARGE MOBILE
========================================================= */
@media (max-width: 600px) {
  .product-hero {
    padding-top: 120px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 420px) {
  .features li {
    font-size: 13px;
  }
}


/* ================= ELITE ABOUT SECTION ================= */
.elite-about {
  background: linear-gradient(135deg, #0c0c0c, #141414);
  padding: clamp(80px, 10vw, 140px) 20px;
  color: #ffffff;
}

.elite-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ================= TEXT CONTENT ================= */
.elite-label {
  color: #c9a14a;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

.elite-about-text h2 {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 22px;
}

.elite-about-text p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 16px;
}

.elite-about-text strong {
  color: #ffffff;
  font-weight: 600;
}

.elite-highlight {
  color: #c9a14a;
  font-weight: 500;
  margin-top: 22px;
  font-size: clamp(14px, 2vw, 16px);
}

/* ================= STATS ================= */
.elite-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: #c9a14a;
}

.stat-box h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: #c9a14a;
  margin-bottom: 8px;
}

.stat-box span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #cccccc;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .elite-about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .elite-about-text {
    max-width: 700px;
    margin: auto;
  }

  .elite-about-stats {
    max-width: 500px;
    margin: auto;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .elite-about {
    padding: 70px 16px;
  }

  .elite-about-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 22px 16px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 400px) {
  .elite-about-text h2 {
    font-size: 24px;
  }

  .elite-about-text p {
    font-size: 14px;
  }
}


/* ================= ELITE PACKAGE SECTION ================= */

:root {
  --bg-main: #050505;
  --bg-card: linear-gradient(180deg, #151515, #090909);
  --gold-soft: rgba(214,179,94,0.35);
  --text-main: #f5f5f5;
  --text-muted: #b5b5b5;
  --border-soft: rgba(255,255,255,0.08);
}

/* ================= SECTION ================= */
.elite-packages {
  background: radial-gradient(circle at top, #1a1a1a, #050505 70%);
  padding: 110px 20px;
}

.elite-wrap {
  max-width: 1280px;
  margin: auto;
  display: grid;
  gap: 90px;
}

/* ================= HEADER ================= */
.elite-heading {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.elite-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-main);
}

.elite-heading span {
  color: var(--gold);
}

.elite-heading p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ================= CARD BASE ================= */
.elite-card,
.royal-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    border: 1px solid var(--gold-soft);

}

/* ================= MEDIA ================= */
.elite-media,
.royal-media {
  position: relative;
  height: 320px; /* SAME SIZE FOR ALL */
}

.elite-media img,
.royal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

/* ================= BADGES ================= */
.elite-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 64px;
  font-weight: 700;
  color: var(--gold-soft);
}

.royal-badge {
  position: absolute;
  bottom: 26px;
  left: 26px;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 6px 14px;
  border-radius: 40px;
}

/* ================= CONTENT ================= */
.elite-content,
.royal-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.elite-content::before,
.royal-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ================= TEXT ================= */
.elite-label,
.royal-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
}

.elite-title,
.royal-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-main);
}

.elite-desc,
.royal-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
}

/* ================= STATS ================= */
.elite-stats,
.royal-stats {
  display: flex;
  gap: 50px;
  margin-top: 8px;
}

.elite-stat strong,
.royal-stat strong {
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
}

.elite-stat span,
.royal-stat span {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ================= BUTTON ================= */
.elite-btn,
.royal-btn {
  margin-top: 34px;
  padding: 16px 44px;
  border-radius: 60px;
  background: linear-gradient(135deg, #e2c66f, #b8952e);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  width: fit-content;
  transition: transform .3s ease, box-shadow .3s ease;
}

.elite-btn:hover,
.royal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(214,179,94,.35);
}

/* ================= VARIANTS ================= */
.is-premium {
  border-color: rgba(214,179,94,0.35);
}

.is-super-premium {
  border-color: rgba(214,179,94,0.5);
}

.royal-container {
  background: linear-gradient(180deg, #1b1b1b, #070707);
  border-color: rgba(214,179,94,0.6);
}

/* ================= RESPONSIVE ================= */
@media (min-width: 900px) {
  .elite-card,
  .royal-container {
    grid-template-columns: 1fr 1.1fr;
  }

  .elite-media,
  .royal-media {
    height: auto;
    min-height: 100%;
  }
}

@media (max-width: 768px) {
  .elite-content,
  .royal-content {
    padding: 40px;
  }

  .elite-content::before,
  .royal-content::before {
    display: none;
  }

  .elite-stats,
  .royal-stats {
    gap: 32px;
  }
}
/* =================Why Choose ================= */

:root {
  --bg-dark: #050505;
  --bg-card: #111;
  --gold: #d6b35e;
  --gold-soft: rgba(214,179,94,0.35);
  --text-main: #f5f5f5;
  --text-muted: #b5b5b5;
  --border-soft: rgba(255,255,255,0.08);
}

/* ================= SECTION ================= */
.elite-why {
  background: radial-gradient(circle at top, #1a1a1a, #050505 70%);
  padding: 110px 20px;
}

.elite-why-wrap {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.elite-why-header {
  text-align: center;
  max-width: 800px;
  margin: auto  auto 70px;
}

.elite-why-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.elite-why-header h2 span {
  color: var(--gold);
}

.elite-why-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ================= GRID ================= */
.elite-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* ================= CARD ================= */
.elite-why-card {
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.elite-why-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.elite-why-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
  .elite-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .elite-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ================= FAQ ================= */
/* ================= ROOT ================= */
:root {
  --bg-dark: #050505;
  --bg-soft: #0c0c0c;
  --gold: #d6b35e;
  --gold-soft: rgba(214,179,94,0.25);
  --text-main: #ffffff;
  --text-muted: #b8b8b8;
  --border-soft: rgba(255,255,255,0.08);
}

/* ================= FULL WIDTH SECTION ================= */
.elite-faq {
  width: 100%;
  background:
    radial-gradient(circle at top, #161616, #050505 70%);
  padding: 120px 6vw;
  color: var(--text-main);
  font-family: "Poppins", system-ui, sans-serif;
}

/* ================= HEADER ================= */
.elite-faq-header {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.elite-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.elite-faq-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.elite-faq-header p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ================= FAQ LIST ================= */
:root {
  --bg-dark: #050505;
  --bg-soft: #0d0d0d;

  /* upgraded luxury gold */
  --gold: #e3c977;
  --gold-soft: rgba(227,201,119,0.28);

  /* creative text colors */
  --text-main: #f7f7f7;        /* platinum white */
  --text-heading: #ffffff;    /* pure white */
  --text-muted: #c2c2c2;       /* warm silver */
  --text-soft: #9a9a9a;        /* subtle grey */

  --border-soft: rgba(255,255,255,0.08);
}
.elite-faq-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--text-heading);
  text-shadow: 0 2px 20px rgba(255,255,255,0.05);
}

.elite-faq-header p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}
.elite-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.elite-faq-item h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
}
.elite-faq-item p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 900px;
}
.elite-faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 140px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold),
    rgba(227,201,119,0.2),
    transparent
  );
}




.elite-faq-item {
  max-width: 1400px;
  margin: auto;
  padding: 42px 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

/* subtle gold divider */
.elite-faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 120px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold),
    transparent
  );
}

.elite-faq-item:last-child {
  border-bottom: none;
}

.elite-faq-item:last-child::after {
  display: none;
}

/* ================= TEXT ================= */
.elite-faq-item h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-main);
}

.elite-faq-item p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
}

/* ================= LARGE SCREENS ================= */
@media (min-width: 1600px) {
  .elite-faq {
    padding: 140px 8vw;
  }

  .elite-faq-header h2 {
    font-size: 56px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .elite-faq {
    padding: 100px 5vw;
  }

  .elite-faq-header {
    margin-bottom: 60px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .elite-faq {
    padding: 80px 22px;
  }

  .elite-faq-header h2 {
    font-size: 30px;
  }

  .elite-faq-item {
    padding: 32px 0;
  }

  .elite-faq-item h3 {
    font-size: 16px;
  }

  .elite-faq-item p {
    font-size: 14.5px;
  }
}
/* =================Follow us================= */
/* ================= FOLLOW US SECTION ================= */

.elite-follow {
  background:
    radial-gradient(circle at top, #151515, #050505 70%);
  padding: 120px 20px;
}

.elite-follow-wrap {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ================= TEXT ================= */

.elite-follow-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}

.elite-follow-desc {
  max-width: 680px;
  margin: auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ================================================= SOCIAL LINKS ================================= */
/* ================= FOLLOW US ================= */

/* ================= SECTION ================= */
.elite-follow {
  background: radial-gradient(circle at top, #151515, #050505 75%);
  padding: 120px 20px;
}

.elite-follow-wrap {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ================= TEXT ================= */
.elite-follow-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
}

.elite-follow-desc {
  max-width: 680px;
  margin: auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ================= GRID ================= */
.elite-social-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ONE ROW */
  gap: 26px;
}

/* ================= CARD ================= */
.elite-social-card {
  padding: 34px 32px;
  border-radius: 22px;
  text-decoration: none;
  background: linear-gradient(180deg, #141414, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.elite-social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.elite-social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.75);
}

.elite-social-card:hover::after {
  opacity: 1;
}

/* ================= TEXT ================= */
.platform {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.handle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ================= COLORS ================= */
.instagram { border-color: rgba(225,48,108,0.25); }
.instagram::after {
  background: radial-gradient(circle at top left,
    rgba(225,48,108,0.35), transparent 60%);
}

.facebook { border-color: rgba(24,119,242,0.28); }
.facebook::after {
  background: radial-gradient(circle at top,
    rgba(24,119,242,0.35), transparent 65%);
}

.linkedin { border-color: rgba(10,102,194,0.3); }
.linkedin::after {
  background: linear-gradient(145deg,
    rgba(10,102,194,0.35), rgba(10,102,194,0.12));
}

.whatsapp { border-color: rgba(37,211,102,0.35); }
.whatsapp::after {
  background: radial-gradient(circle at top left,
    rgba(37,211,102,0.4), transparent 65%);
}




.elite-follow-header {
  text-align: center;
  margin-bottom: 70px;
}

/* Small tag */
.elite-tagline {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* Main heading */
.elite-follow-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.8px;
  position: relative;
}

/* Glow highlight */
.elite-glow {
  position: relative;
  color: #ffffff;
}

.elite-glow::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 15%;
  width: 120%;
  height: 40%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
  filter: blur(18px);
  z-index: -1;
}
.elite-follow-title.minimal {
  font-weight: 500;
}

.elite-light {
  color: #fff;
  text-shadow:
    0 0 15px rgba(255,255,255,0.35),
    0 0 40px rgba(255,255,255,0.15);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .elite-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .elite-social-grid {
    grid-template-columns: 1fr;
  }

  .elite-follow {
    padding: 90px 16px;
  }
}

/* ===================================FOOTER=========================== */

/* FOOTER */
.elite-footer {
    background: #0b0b0b;
    color: #cccccc;
    padding: 70px 16px 20px;
    border-top: 1px solid #222;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 16px;
}

.footer-container h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-container a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container a:hover {
    color: #cfa44a;
}

/* SOCIAL */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.footer-legal {
    margin-top: 8px;
    font-size: 13px;
}

.footer-legal span {
    margin: 0 6px;
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #cfa44a;
    color: #000;
    border: none;
    padding: 10px 14px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    z-index: 999;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    padding: 14px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 999;
}

/*=======================================RESPONSIVE====================*/
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }
}

/*======================================== FLOATING AI ==========================*/
.ai-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* BUTTON */
.ai-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c9a14a, #e1b85c);
  color: #000;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* CHAT BOX */
.ai-box {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 320px;
  max-height: 460px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* HEADER */
.ai-header {
  background: #111;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c9a14a;
  font-size: 14px;
  letter-spacing: 1px;
}

.ai-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* MESSAGES */
.ai-messages {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.ai-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}

.ai-message.bot {
  background: #1a1a1a;
  color: #fff;
}

.ai-message.user {
  background: #c9a14a;
  color: #000;
  margin-left: auto;
}

/* INPUT */
.ai-input {
  display: flex;
  border-top: 1px solid #222;
}

.ai-input input {
  flex: 1;
  padding: 12px 14px;
  background: #0b0b0b;
  border: none;
  color: #fff;
  outline: none;
}

.ai-input button {
  width: 50px;
  background: #c9a14a;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* QUICK QUESTIONS */
.ai-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ai-quick button {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.ai-quick button:hover {
  background: #c9a14a;
  color: #000;
}


/* MOBILE */
@media (max-width: 480px) {
  .ai-box {
    width: 280px;
  }
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu {
        display: block;
    }

    .hero-content {
        left: 6%;
        right: 6%;
        bottom: 12%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .product-section,
    .elitepro-section,
    .partner-section {
        padding: 100px 24px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .elitepro-section,
    .partner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .details p {
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}
