/* ============================================================
   YAKSHA GOLD — style.css
   Exact colors, fonts & layout from yakshagold.com
   Fixed alignment & fully responsive (mobile → 4K)
============================================================ */

/* ── CSS Variables (exact brand palette) ─────────────────── */
:root {
  --gold: #c9a84c;
  /* primary gold */
  --gold-dark: #a07c2d;
  /* darker gold  */
  --gold-hover: #e0b84e;
  /* hover state  */
  --dark-bg: #1a1a2e;
  /* dark navy bg used in sections */
  --dark-bg2: #16213e;
  --section-light: #fffdf4;
  /* off-white/cream bg */
  --section-gray: #f8f4ec;
  /* dark gold bg */
  --section-dark: #F6DBB2;
  /* light beige/gold tint */
  --text-dark: #1d1d1d;
  --text-body: #444444;
  --text-muted: #777777;
  --white: #ffffff;
  --border-light: #e8ddc8;
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
}

/* ── Base Reset ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

/* ── Utility: section padding ─────────────────────────────── */
.section-pad {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding: 50px 0;
  }
}

/* Background helpers */
.bg-white {
  background: var(--white);
}

.bg-light-gold {
  background: var(--section-dark);
}

.bg-dark-section {
  background: var(--dark-bg);
}

/* ── Section Typography ────────────────────────────────────── */
.section-overline {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0;
}

.section-heading.light {
  color: var(--white);
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: 2px;
  margin: 14px 0 20px;
}

.section-body {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.section-body.light {
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: #EDCB9A !important;
  color: black;
  padding: 20px 0;
  /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35); */
  transition: padding var(--transition), background var(--transition);
}

.nav-logo {
  height: 25px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #09012F !important;
  padding: 8px 12px !important;
  transition: color var(--transition);
  position: relative;
}

/* .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition);
} */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #8F664A !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 24px);
}

.btn-call-nav {
  background: #E6B065 !important;
  color: #C84E32 !important;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  border: none;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-call-nav:hover {
  transform: translateY(-2px);
  background: #AA8440 !important;
  box-shadow: var(--shadow-gold);
  color: white !important;
}

.navbar-toggler {
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  padding: 5px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav */
@media (max-width: 991px) {
  #navbarNav {
    /* background: #111128; */
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 10px 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .navbar-nav .nav-link {
    padding: 10px 20px !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-call-nav {
    margin: 10px 20px;
    display: inline-block;
  }
}


/* ============================================================
   BUTTONS (Brand)
============================================================ */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--white) !important;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white) !important;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--dark-bg);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 30px;
  border: none;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.45);
  color: var(--dark-bg);
}

.btn-hero-outline {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 30px;
  border: 2px solid var(--gold);
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}

.btn-hero-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}


/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  background: #EFCD9B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0px 0 60px;
}

.hero-left {
  padding-left: 60px;
}

.hero-title {
  font-size: 50px;
  font-weight: 600;
  color: #0d0d2b;
  line-height: 1.1;
  margin-bottom: 50px;
}

/* BUTTON */
.hero-btn {
  background: #b3873c;
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #9c7432;
}

/* SOCIAL */
.hero-social span {
  font-size: 14px;
  color: #333;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* RIGHT SIDE */
.hero-right {
  position: relative;
  text-align: center;
}

.hero-img {
  max-height: 460px;
  width: auto;
}

/* MEDAL */
.medal-img {
  position: absolute;
  right: 100px;
  bottom: 20px;
  width: 110px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 992px) {

  .hero-title {
    font-size: 42px;
  }

  .hero-left {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-img {
    max-height: 350px;
  }

  .medal-img {
    width: 80px;
    right: 20px;
  }

  .social-links {
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 30px;
  }

  .hero-img {
    max-height: 280px;
  }
}


/* ============================================================
   WHAT WE DO SECTION
============================================================ */
/* ============================================================
   WHAT WE DO SECTION (FULL RESPONSIVE)
============================================================ */

.whatwedo-section {
  padding: 80px 0;
}

/* Heading */
.whatwedo-section .section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Divider */
.whatwedo-section .section-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #6B78B5, #6B78B5);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Infographic Image */
.infographic-img {
  width: 100%;
  height: auto;
  /* max-width: 1000px; */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Button */
.btn-primary-gold {
  padding: 10px 26px;
  font-size: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6B78B5, #6B78B5);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .whatwedo-section {
    padding: 60px 0;
  }

  .whatwedo-section .section-heading {
    font-size: 28px;
  }

  .infographic-img {
    max-width: 90%;
  }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {
  .whatwedo-section {
    padding: 50px 0;
  }

  .whatwedo-section .section-heading {
    font-size: 24px;
  }

  .infographic-img {
    max-width: 100%;
    border-radius: 8px;
  }

  .btn-primary-gold {
    font-size: 14px;
    padding: 9px 22px;
  }
}

/* =========================
   SMALL MOBILE (<= 576px)
========================= */
@media (max-width: 576px) {
  .whatwedo-section .section-heading {
    font-size: 20px;
  }

  .whatwedo-section .section-divider {
    width: 80px;
  }

  .btn-primary-gold {
    width: 100%;
    max-width: 220px;
  }
}

/* ============================================================
   STAT BOXES
============================================================ */
.stat-box {
  background: var(--section-gray);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-value {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}


/* ============================================================
   ABOUT CTA STRIP
============================================================ */
.about-cta-section {
  padding: 50px 0;
}

/* LEFT STRIP */
.about-cta-strip {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-cta-img {
  width: 70px;
}

/* RIGHT CARD */
.cta-card {
  background: #EDE3D3;
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
  margin: auto;
  /* 🔥 CENTER FIX */
}

/* TEXT */
.cta-small-text {
  font-size: 15px;
  line-height: 1.6;
}

.cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  background: #AA8440;
  color: white;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
}

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

  .about-cta-strip {
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
  }

  .cta-card {
    text-align: center;
  }
}

/* ============================================================
   ABOUT SECTION (FULL RESPONSIVE - SAME LAYOUT)
============================================================ */

.about-section {
  padding: 80px 0;
}

/* Image */
.about-mascot {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content */
.section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-body {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   CTA SECTION
========================= */

.about-cta-section {
  margin-top: 60px;
}

/* Left CTA */
.about-cta-strip {
  text-align: center;
}

.about-cta-img {
  max-width: 320px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.cta-small-text {
  font-size: 18px;
  color: #4C3324;
  font-weight: 600;
  text-align: left;
}

/* Right CTA */
.cta-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cta-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: left;
}

.cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: #AA8440;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #3E2E1B;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {

  .about-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 28px;
  }

  .about-mascot {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .about-cta-section .row {
    gap: 30px;
  }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {
  .about-section {
    overflow-x: hidden;
    /* 🔥 prevents horizontal scroll */
  }

  .about-section .section-divider {
    margin: 12px auto 18px;
  }

  .about-section {
    padding: 50px 0;
    text-align: center;
  }

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

  .section-body {
    font-size: 15px;
  }

  /* Stack image above content */
  .about-mascot {
    max-width: 90%;
    margin: 0 auto;
  }

  /* CTA spacing */
  .about-cta-section {
    margin-top: 40px;
  }

  .cta-card {
    padding: 24px;
  }

  .cta-title {
    font-size: 18px;
  }
}

/* =========================
   SMALL MOBILE (<= 576px)
========================= */
@media (max-width: 576px) {

  .section-heading {
    font-size: 20px;
  }

  .about-mascot {
    max-width: 220px;
  }

  .cta-btn {
    width: 100%;
    max-width: 200px;
  }
}


/* ============================================================
   ABOUT MASCOT
============================================================ */
.about-mascot {
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}


/* ============================================================
   INFOGRAPHIC IMAGES
============================================================ */
.infographic-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

/* ============================================================
   VIDEO / TRUST SECTION
============================================================ */
.video-section {
  background: #EFCD9B;
  padding: 80px 0;
}

.right-video-section {
  background-image: url('./images/landing4-wrap-bg2-1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.video-section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #6B78B5, #6B78B5);
  border-radius: 2px;
  margin: 14px 0 20px;
}

/* TEXT */
.section-overline {
  font-size: 14px;
  color: #936B4E;
  font-weight: 600;
}

.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: #0d0d2b;
}

.section-body {
  color: #333;
  font-size: 15px;
}

/* VIDEO BOX */
.video-box {
  height: 300px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLAY BUTTON */
.video-play-btn {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

/* SLIDER IMAGE */
.carousel-item img {
  border-radius: 15px;
  height: 260px;
  object-fit: cover;
}

/* DOTS */
.carousel-indicators {
  gap: 10px;
}

/* IMPORTANT FIX */
.carousel-indicators [data-bs-target] {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background-color: #936B4E;
  border: none;
  margin: 0;
  padding: 0;
  opacity: 0.5;
}

/* ACTIVE DOT */
.carousel-indicators .active {
  background-color: #000;
  opacity: 1;
  transform: scale(1.2);
}

/* BUTTON */
.btn-reach {
  background: #AA8440;
  color: white;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-reach:hover {
  background: #936B4E;
}

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

  .section-heading {
    font-size: 28px;
    text-align: center;
  }

  .section-body {
    text-align: center;
  }

  .video-box {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .video-section-divider {
    margin: 12px auto 18px;
  }

  .section-overline {
    text-align: center;
  }

  .video-section {
    padding: 70px 20px;
  }

  .carousel-item img {
    height: 200px;
  }
}


/* ============================================================
   YAKSHA GOLD COIN SECTION (FULL RESPONSIVE)
============================================================ */

/* .coin-section {
  
} */

.coin-content {
  max-width: 540px;
}

/* Heading */
.section-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* Subheading */
.coin-subheading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

/* Body text */
.section-body {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Divider */
.coin-section-divider {
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, #6B78B5, #6B78B5);
  border-radius: 2px;
  margin: 14px 0 20px;
}

/* Image */
.coin-mascot {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Hover effect (desktop only) */
.coin-mascot:hover {
  transform: scale(1.05);
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .coin-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 28px;
  }

  .coin-content {
    max-width: 100%;
    text-align: center;
  }

  .coin-section-divider {
    margin: 12px auto 18px;
  }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {
  .coin-section {
    padding: 50px 0;
  }

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

  .coin-subheading {
    font-size: 1.1rem;
  }

  .section-body {
    font-size: 15px;
  }

  .coin-mascot {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

/* =========================
   SMALL MOBILE (<= 576px)
========================= */
@media (max-width: 576px) {
  .section-heading {
    font-size: 20px;
  }

  .coin-mascot {
    max-width: 250px;
  }

  .coin-section-divider {
    width: 120px;
  }
}

/* ============================================================
   Procedures/STEPS SECTION
============================================================ */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.22));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
  padding: 8px;
}

.step-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-number {
  position: absolute;
  top: -12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}


/* ============================================================
   FAQ SECTION (2 COLUMN)
============================================================ */
.faq-section {
  background: #EFCD9B;
  padding: 100px 0;
}

/* IMAGE */
.faq-img {
  max-width: 320px;
  margin: auto;
}

/* RIGHT SIDE SPACING */
.faq-section .col-lg-7 {
  padding-left: 40px;
}

/* FAQ ITEMS */
.faq-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
}

.faq-btn {
  background: transparent !important;
  font-weight: 600;
  color: #6B4E2E !important;
  padding: 18px 0;
}

/* NUMBER */
.faq-num {
  width: 28px;
  height: 28px;
  background: #d1a75c;
  color: white;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BODY */
.faq-body {
  padding-left: 40px;
  color: #333;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 992px) {

  .faq-section {
    text-align: center;
  }

  .faq-section .col-lg-7 {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section .section-divider {
    margin: 12px auto 18px;
  }

  .faq-img {
    max-width: 220px;
  }

  .faq-btn {
    font-size: 14px;
  }

  .faq-body {
    padding-left: 20px;
  }
}


/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-section {
  padding: 100px 0;
  background: #fff;
}

/* LEFT BOX */
.google-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.btn-google {
  background: #4285f4;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* CARD */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.test-carousel-item img {
  object-fit: cover;
}

/* CENTER EFFECT */
.test-carousel-item.active .review-card {
  transform: scale(1.05);
}

/* HEADER */
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1967d2;
}

.review-time {
  font-size: 0.75rem;
  color: #777;
}

.google-icon {
  width: 18px;
}

.stars {
  color: #fbbc05;
  margin: 8px 0;
}

.review-text {
  font-size: 0.85rem;
  color: #444;
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: #EFCD9B;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/* DOTS */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  background: #936B4E;
  border: none;
}

.carousel-indicators .active {
  background: black;
}

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

  .review-card {
    transform: none !important;
  }

  .test-carousel-item .row {
    flex-direction: column;
  }

  .google-review-box {
    margin-bottom: 30px;
  }
}

/* ============================================================
   CTA BANNER
============================================================ */
/* SECTION */
.cta-banner-simple {
  padding: 60px 0;
  background: #f5f5f5;
}

/* MAIN BOX */
.cta-box {
  background: #EFCD9B;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* IMAGE */
.cta-img img {
  position: relative;
  top: -70px;
  width: 140px;
  height: 150%;
}

/* TEXT */
.cta-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b0b2b;
  margin: 0;
}

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-img img {
    width: 90px;
  }

  .cta-text h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {

  .cta-text h2 {
    font-size: 1.3rem;
  }

  .cta-box {
    border-radius: 20px;
  }
}


/* ============================================================
   CONTACT
============================================================ */
.contact-form {
  background: var(--section-gray);
  padding: 36px;
  border-radius: var(--radius-lg);
}

.contact-input {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-info-wrap {
  padding: 10px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--dark-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

a.contact-link:hover {
  color: var(--gold);
}

@media (max-width: 575px) {
  .contact-form {
    padding: 22px;
  }
}

/* ============================================================
   FOOTER SECTION
============================================================ */
/* MAIN */
.footer-new {
  background: #f7f3ec;
  /* padding: 60px 0 20px; */
  color: #333;
}

/* LOGO */
.footer-logo {
  height: 50px;
}

/* TAGLINE */
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #2B2A29;
  font-weight: 600;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social i {
  font-size: 14px;
  cursor: pointer;
}

/* TEXT */
.footer-contact,
.footer-address {
  font-size: 0.85rem;
  color: #AA8440;
}

/* HEADINGS */
.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #AA8440;
  cursor: pointer;
}

.footer-links li:hover {
  color: #2b2a29;
  text-decoration: underline;
}

/* PAYMENTS */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.payment-logos img {
  height: 28px;
  object-fit: contain;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-logo {
    margin: 0px auto 18px;
  }

  .footer-new {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .payment-logos {
    justify-content: center;
  }
}


/* ============================================================
   FLOATING CALL BUTTON
============================================================ */
.floating-call-btn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 1050;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: var(--dark-bg) !important;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-call-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.6);
  color: var(--dark-bg) !important;
}


/* ============================================================
   CHAT POPUP
============================================================ */
.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1049;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  max-width: 240px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: none;
}

.chat-popup.show {
  display: block;
  animation: fadeSlideUp 0.3s ease;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.chat-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.chat-msg {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.45;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  color: var(--white) !important;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.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;
}


/* ============================================================
   RESPONSIVE OVERRIDES
============================================================ */

/* Large tablets */
/* @media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 40px;
  }

  .coin-mascot {
    max-width: 260px;
  }

  .contact-form {
    padding: 28px;
  }

  .testi-card {
    min-height: 240px;
  }
} */

/* Tablets & large phones */
/* @media (max-width: 767px) {
  .section-heading {
    font-size: 1.5rem;
  } 

  .about-mascot {
    max-width: 220px;
  }

  .video-box {
    height: 220px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .step-icon-wrap {
    width: 58px;
    height: 58px;
  }

  .testi-quote {
    font-size: 0.9rem;
  }

  .testi-content {
    padding: 20px;
  }

  .cta-banner-heading {
    font-size: 1.4rem;
  }

  .rating-num {
    font-size: 3rem;
  }

  .footer-copy {
    text-align: center;
  }
} */

/* Small phones */
/* @media (max-width: 480px) {
  .hero-heading {
    font-size: 1.55rem;
  }

  .hero-tagline {
    font-size: 0.72rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .about-cta-strip {
    padding: 14px;
  }

  .floating-call-btn {
    padding: 11px 16px;
    bottom: 18px;
    right: 14px;
  }

  .faq-body {
    padding-left: 20px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
} */