:root {
  --bg-main: #000000;
  --bg-glass: rgba(0, 0, 0, 0.199);
  --border-glass: #d4af3707;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent: #d4af37; /* luxury gold */
  --blur: blur(24px);
}

@font-face {
  font-family: "inter";
  src: url("Inter/Inter_18pt-SemiBold.ttf") format("woff2");
  font-style: normal;
  font-display: swap;
}

/* Light Theme */
[data-theme="light"] {
  --bg-main: #f5f7fa;
  --bg-glass: rgba(255, 255, 255, 0.6);
  --border-glass: rgba(0, 0, 0, 0.1);
  --text-primary: #000000;
  --text-secondary: rgba(0, 0, 0, 0.6);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  margin: 0%;
  padding: 0%;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 4px 12px 0 4px;
  background: var(--bg-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);

  border-radius: 40px;
  border: 1px solid var(--border-glass);
  z-index: 1000;

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  font-family: "inter";
  font-size: 12px;
  letter-spacing: 1px;
}

.nav-links a {
  position: relative;
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.nav-links a:hover::before, .nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a:hover, .nav-links a.active {
  color: #000; /* premium contrast on gold */
  font-family: "inter";
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 400;
}

.login-btn {
  margin: 0px 0px 4px;
  background: var(--accent);
  color: #000;
  font-family: "inter";
  font-size: 16px;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
  will-change: transform;
}

.login-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(Background-.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(
    to top,
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--text-primary);
  max-width: 1000px;
  padding: 60% 10% 10% 10%;
}

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: -10px;
  display: inline-block;
}

.hero-title {
  font-family: "inter", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-family: "inter";
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 10px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "inter";
  font-weight: 500;
}

  .btn-primary {
    padding: 14px 28px;
    border-radius: 40px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }

  .btn-secondary {
    padding: 14px 28px;
    border-radius: 40px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

    .btn-secondary:hover {
      background: var(--accent);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }


.search-bar {
  position: relative; /* ✅ REQUIRED: anchors search-results */
  margin: 180px auto -24px auto ;
  max-width: 500px;
  height: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    #d4af37,
    #a68b2e
  );

  border-radius: 40px;
  padding: 14px 6px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.search-filters {
  display: flex;
  gap: 6px;
}

.filter-item {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 6px;
  height: 34px;
  width: 106px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background 0.25s ease;

  /* ✅ REQUIRED for <select> */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  padding-right: 20px;
}

.filter-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.filter-item:focus {
  outline: none;
}

.search-action {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-action span {
  font-size: 16px;
}

.search-action:hover {
  transform: translateX(2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.search-bar {
  animation: floatIn 0.8s ease forwards;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-width: 500px;
  margin: 220px auto;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  font-family: "inter";
  letter-spacing: 1;
  font-weight: 100;
  display: none;
  z-index: 999; /* ✅ REQUIRED */
  overflow: hidden;
}

.search-results a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.25s ease;
}

.search-results a:hover {
  background: rgba(212, 175, 55, 0.7);
}

.clients-section {
  position: relative;
  min-height: 60vh;
  padding: 20px 140px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: radial-gradient(
    circle at top center,
    rgba(212, 175, 55, 0.5),
    #050709 60% );
  overflow: hidden;
  z-index: -1;
}

.clients-left {
  max-width: 320px;
  z-index: 2;
}

.clients-tag {
  font-family: "inter";
  color: #ffffff;
  letter-spacing: 0px;
  font-size: 40px;
}

.clients-left h2 {
  font-family: "inter";
  font-size: 80px;
  margin: 0;
  color: #fff;
}

.clients-left p {
  color: var(--text-secondary);
  font-family: "inter";
  margin: 0;
  font-size: 16px;
}

.clients-divider {
  width: 2px;
  height: 240px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212,175,55,0.8),
    transparent
  );
  z-index: 2;
}

.clients-right {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.clients-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #050709, transparent);
  z-index: 2;
}

.clients-right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, #050709, transparent);
  z-index: 2;
}

.clients-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.clients-track img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.4);
}

.success-stories-section {
  background: radial-gradient(circle at top, #1c1c1c, #000);
  margin-top: 0;
  margin-bottom: 40px;
  padding: 5%;
}

.success-container {
  max-width: 1400px;
  margin: 0 auto;
}

.success-title {
  text-align: center;
  color: var(--text-primary);
  font-family: "inter";
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* 🔥 Slider Layout */
.success-videos {
  display: flex;
  gap: 40px;

  /* Show only 3 cards width */
  max-width: calc((300px * 3) + (40px * 2));
  margin: 0 auto;

  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;

  padding-bottom: 10px;
}

/* Hide scrollbar */
.success-videos::-webkit-scrollbar {
  display: none;
}
.success-videos {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.success-videos {
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.success-videos:active {
  cursor: grabbing;
}

/* Reel-style card */
.video-card {
  width: 300px;
  height: 540px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

  flex-shrink: 0;
  scroll-snap-align: start;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-link {
  text-decoration: none;
  display: block;
}


/* ================= Expert Section ================= */

.client-text {
  display: flex;
  flex-direction: column;
}

.client-text h4 {
  margin: 0 6px 6px 6px;
  font-family: "inter";
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);

}

.client-text span {
  margin-left: 4px;
  font-family: sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 100;
  letter-spacing: 1.5px;
  color: var(--text-secondary);

}

.testimonial-card p {
  margin: 0;
  font-family: "inter";
  font-size: 16px;
  font-weight: 100;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ================= ANIMATION ================= */

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.expert-section {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
  color: white;
  font-family: "Inter", sans-serif;
}

.expert-heading {
  text-align: center;
  color: var(--text-primary);
  font-family: "inter";
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
}

.expert-heading span {
  color: var(--accent);
}

/* Card */
.expert-card {
  display: flex;
  gap: 40px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: 22px;
  padding: 40px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Image */
.expert-image {
  flex: 0 0 350px;
  border-radius: 18px;
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.expert-content h3 {
  font-family: "inter";
  font-size: 30px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0px;
}

.expert-content h3 span {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.7px;
  color: var(--text-secondary);
}

.expert-desc {
  font-family: "inter";
  font-size: 16px;
  letter-spacing: 0.7px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 610px;
  margin-bottom: 30px;
}

/* Stats */
.expert-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}

.stat {
  margin: 0;
  padding: 0px 20px 20px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  will-change: transform, box-shadow;
}

.stat:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
}


.stat h4 {
  font-family: "inter";
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  transition: color 0.3s ease;
}

.stat:hover h4 {
  color: var(--accent);
}

.stat span {
  font-family: "inter";
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.stat.highlight {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

/* ================= CALLENDLY ================= */

.consultation-section {
  background: radial-gradient(circle at top, #1c1c1c, #000);
  padding: 50px 20px;
  color: #fff;
  font-family: "inter";
}

.consultation-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.consultation-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.consultation-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 800px;
  margin: 0 auto;
}

.consultation-header p span{
  color: var(--accent);
}

/* ================= LISTINGS SECTION ================= */

.listings-section {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  margin-bottom: 100px;
  overflow: hidden;
}

.listings-section h2{
  text-align: center;
  color: var(--text-primary);
  font-family: "inter";
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}


/* ================= SLIDER ================= */

.listings-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.listings-slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.listings-slider-track .listings-grid {
  min-width: 100%;
  flex-shrink: 0;
}

/* ================= GRID ================= */

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
}

.listing-card {
  aspect-ratio: 4 / 5;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.170);
}

.listing-card {
  position: relative;
  overflow: hidden;
}

/* ===== SUBTLE LUXURY SOLD RIBBON ===== */
.sold-badge {
  position: absolute;
  top: 14px;
  right: -42px;
  width: 150px;
  padding: 5px 0;

  background: linear-gradient(
    135deg,
    #8b0000,
    #a80000,
    #8b0000
  );

  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;

  transform: rotate(45deg);
  z-index: 5;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

  overflow: hidden;
}

.sold-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 55%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.4),
    transparent
  );

  transform: skewX(-25deg);
  opacity: 0.7;
}

/* More subtle movement */
.listing-card:hover .sold-badge::after {
  left: 170%;
  transition: left 3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* IMAGE — FIXED, SLIGHTLY ZOOMED */
.listing-image {
  flex: 4;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.listing-content {
  flex: 1;
  padding: 8px;
  text-align: left;
  color: var(--text-primary);
}

.listing-content h3 {
  font-family: "inter";
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin: 2px;
}

.listing-content p {
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  font-weight: 100;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--text-secondary);
  opacity: 0.75;
  margin: 2px;
}

.listing-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.listing-buttons {
  display: flex;
  gap: 10px;
}

/* ================= BUTTONS ================= */

.listing-buttons a {
  margin-top: -6px;
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "inter";
}

.view-btn {
  background: var(--accent);
  color: black;
  transition: 
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease;
  will-change: transform, box-shadow;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.35),
    0 0 12px rgba(212, 175, 55, 0.25);
}

.inquire-btn {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  color: var(--text-primary);
  backdrop-filter: var(--blur);
  border: 2px solid var(--border-glass);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
  will-change: transform, box-shadow;
}

.inquire-btn:hover {
  background: var(--accent);
  color: black;
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.35),
    0 0 12px rgba(212, 175, 55, 0.25);
}



/* ================= PAGINATION ================= */

.slider-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: transparent;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;

  will-change: transform;
}

/* Hover */
.nav-btn:hover:not(:disabled) {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Active press */
.nav-btn:active:not(:disabled) {
  transform: translateY(0);
}

/* Disabled */
.nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}


/* ========= CALCULATORS SECTION ========= */
.calculators-section {
  display: none;
  width: 100%;
  background: var(--bg-main);
  padding: 70px 20px;
  box-sizing: border-box;
  font-family: "inter";
  margin: -100px 0px ;
}

.calculators-column {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 30px 0;
}

/* ======= CARD BASE ========= */
.calculator-card {
  width: 230px;
  height: 390px;
  perspective: 1400px;
  flex-shrink: 0;
}

/* ========= FLIP MECHANISM ========= */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(.4,.2,.2,1);
}

.calculator-card.flipped .card-inner {
  transform: rotateY(180deg);
}

/* ========== CARD FACE BASE =========== */
.card-face {
  position: absolute;
  inset: 0;
  background: #0e0e0e;
  border-radius: 16px;
  padding: 18px;
  box-sizing: border-box;
  backface-visibility: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

/* =========== FRONT SIDE ============= */

.card-front {
  text-align: center;
  justify-content: center;
}

.card-front h3 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 10px;
}

.card-front p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.card-front .gold-btn {
  margin: 0 auto;
}

/* ============= BACK SIDE =============== */
.card-back {
  transform: rotateY(180deg);
  justify-content: space-between;
}

/* top area */
.card-back h3 {
  text-align: center;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 12px;
}

/* input wrapper */
.card-back .input-group {
  width: 100%;
  margin-bottom: 8px;
}

/* hide labels (clean UI) */
.card-back .input-group label {
  display: none;
}

/* inputs */
.card-back input {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  background: #141414;
  border: 1px solid #2b2b2b;
  border-radius: 7px;
  font-size: 12px;
  color: #fff;
  box-sizing: border-box;
}

.card-back input::placeholder {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

/* remove number arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* result box */
.result {
  width: 90%;
  margin-top: 8px;
  padding: 8px;
  font-size: 13px;
  text-align: center;
  border-radius: 6px;
  border: 1px dashed rgba(212,175,55,0.35);
  color: var(--accent);
}

/* ========= BUTTONS (PERFECT ALIGNMENT) ========== */

.gold-btn {
  width: 120px;
  height: 36px;
  margin: 12px auto 0;
  border-radius: 18px;
  background: var(--accent);
  color: black;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: block;
  transition: 
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease;
  will-change: transform, box-shadow;
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.35),
    0 0 12px rgba(212, 175, 55, 0.25);
}

/* ============= BACK BUTTON ============ */

.back-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

.back-btn:hover {
  background: var(--accent);
  color: #000;
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials {
  margin: auto;
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}

.testimonial-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;

  background: radial-gradient(
    circle at bottom center,
    rgba(212, 175, 55, 0.5),
    #050709 60%
  );

  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.testimonial-objects {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.gold-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: gold-drift 26s ease-in-out infinite;
}

.gold-sphere.s1 {
  width: 90px;
  height: 90px;
  left: 10%;
  top: 42%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.45),
    rgba(212, 175, 55, 0.45),
    rgba(212, 175, 55, 0.15)
  );
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.35),
    0 0 60px rgba(212, 175, 55, 0.18);
  animation-duration: 28s;
}

.gold-sphere.s2 {
  width: 120px;
  height: 120px;
  left: 62%;
  top: 24%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.35),
    rgba(212, 175, 55, 0.4),
    rgba(212, 175, 55, 0.12)
  );
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.3),
    0 0 80px rgba(212, 175, 55, 0.16);
  animation-duration: 34s;
}

.gold-sphere.s3 {
  width: 70px;
  height: 70px;
  left: 45%;
  top: 70%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.4),
    rgba(212, 175, 55, 0.5),
    rgba(212, 175, 55, 0.18)
  );
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.35),
    0 0 55px rgba(212, 175, 55, 0.2);
  animation-duration: 22s;
}

@keyframes gold-drift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(80px, -60px);
  }
  45% {
    transform: translate(140px, 40px);
  }
  70% {
    transform: translate(60px, 120px);
  }
  100% {
    transform: translate(0, 0);
  }
}


/* Section Heading */
.testimonials h2 {
  text-align: center;
  color: var(--text-primary);
  font-family: "inter";
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 60px;
}

.testimonial-slider {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: nowrap;     /* IMPORTANT */
}

.testimonial-card {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.22),
    rgba(0, 0, 0, 0.35)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 22px;
  max-width: 80%;
  flex: 0 0 auto;

  border: 1px solid transparent;
  background-clip: padding-box;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Border */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(0, 0, 0, 0.6)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85);
}


/* ================= FINAL CTA ================= */

.final-cta {
  position: relative;
  margin-top: 50px;
  padding: 100px 6%;
  background: radial-gradient(circle at bottom, #1a1a1a, #000);
  overflow: hidden;
  font-family: "inter";
}

.cta-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1900px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.5), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

/* Layout */
.cta-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

/* Left Text */
.cta-content h2 {
  margin-top: -50px;
  font-size: 60px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta-social {
  margin-top: 22px;
  display: flex;
  gap: 14px;
}

.cta-social a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.cta-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(32%) saturate(500%) hue-rotate(5deg);
}

.cta-social a:hover {
  opacity: 1;
  transform: translateY(-1.5px);
  filter: drop-shadow(0 6px 12px rgba(212,175,55,0.25));
}

/* Glass Form */
.cta-form {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 30px;
  padding-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-form input, .cta-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

.cta-form textarea {
  max-width: 95%;
  height: 120px;
  margin-bottom: 16px;
}

/* Declaration / Consent */
.form-declaration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px 0 20px;
  font-size: 13.5px;
  color: #d0d0d0;
  line-height: 1.5;
}

.form-declaration input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #d4af37;
  cursor: pointer;
  margin-top: 2px;
}

.form-declaration span {
  display: inline-block;
  max-width: 90%;
}

.form-declaration a {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.form-declaration a:hover {
  color: #f0d77a;
  text-decoration: underline;
}

/* Slight glow on focus (premium touch) */
.form-declaration input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

.cta-form button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.form-status {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #d4af37;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-status.show {
  opacity: 1;
}

.cta-form button:active {
  transform: scale(0.97);
}

.cta-trust {
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

/* ================= FOOTER ================= */

.premium-footer {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 90px 6% 25px;
  color: #c9c9c9;
  font-family: 'Inter', sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.brand-row {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.brand-row img {
  width: 160px;
  flex-shrink: 0;
  margin-top: -30px;
}

.brand-text h2 {
  margin: 0;
  font-family: "inter";
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.brand-text p {
  margin-top: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0px;
  color: var(--text-secondary);
}

.footer-legal-inline {
  font-size: 0.8rem;
  color: #777;
  margin-top: -54px;
  margin-bottom: 18px;
  margin-left: 182px;
}

.footer-legal-inline a {
  color: #888;
  text-decoration: none;
}

.footer-legal-inline a:hover{
  color: #fff;
}

.footer-socials {
  margin-left: 180px;
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  font-size: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 🔥 Instagram */
.footer-socials a:nth-child(2):hover {
  background: #E1306C;
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
  transform: translateY(-2px);
}

/* 🔥 Facebook */
.footer-socials a:nth-child(3):hover {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
  transform: translateY(-2px);
}

/* 🔥 WhatsApp */
.footer-socials a:nth-child(4):hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* 🌳 Linktree (Tree icon) */
.footer-socials a:nth-child(1):hover {
  background: #43E660;
  color: #000;
  box-shadow: 0 8px 20px rgba(67, 230, 96, 0.4);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.footer-links-group a {
  display: block;
  margin-bottom: 14px;
  color: #9a9a9a;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links-group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.footer-links-group a:hover {
  color: #fff;
}

.footer-links-group a:hover::after {
  width: 100%;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  
  display: flex;
  justify-content: space-between; /* dono side me */
  align-items: center;
  
  font-size: 12px;
  color: #777;
}

#forseo {
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px; /* thoda space */
}

