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

/* --- CUSTOM VARIABLES --- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0c0c0c;
  --bg-card: #121212;
  --bg-card-hover: #181714;

  /* Golden Palette */
  --color-gold: #d4af37;
  --color-gold-rgb: 212, 175, 55;
  --color-gold-light: #f3e5ab;
  --color-gold-dark: #aa8514;

  --color-text-white: #ffffff;
  --color-text-muted: #a3a3a3;
  --color-text-gold-muted: #c5bead;

  --border-color: #222222;
  --border-gold-muted: rgba(212, 175, 55, 0.15);

  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --nav-height: 80px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --glow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
  --glow-gold-strong: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* --- RESET & GENERAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-white);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

ul {
  list-style: none;
}

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

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

/* --- AMBIENT SHAPES --- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.06;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}

.glow-orb-1 {
  top: -10%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  animation: drift 25s infinite alternate ease-in-out;
}

.glow-orb-2 {
  bottom: 20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  animation: drift 30s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(100px) scale(1.1);
  }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92) translateY(15px);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 40%,
    var(--color-gold-light) 70%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--color-gold);
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 100px 0;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-bounce);
  outline: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: none;
  pointer-events: none;
}

.btn:hover::after {
  left: 140%;
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: var(--color-gold-light);
  box-shadow: var(--glow-gold-strong);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-white);
  border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* --- HEADER / NAVBAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--border-gold-muted);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-white);
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 180px 0 100px 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-muted);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(212, 175, 55, 0.02) 40%
  );
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.dashboard-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: floatY 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatY {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

.dashboard-img {
  object-fit: cover;
  width: 100%;
}

/* --- 3. TRUSTED BY LOGO STRIP --- */
.trust-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-text-placeholder {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  cursor: default;
  user-select: none;
}

.logo-text-placeholder:hover {
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* --- 4. SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-card {
  background: linear-gradient(
    180deg,
    var(--bg-card) 0%,
    rgba(18, 18, 18, 0.7) 100%
  );
  border: 1px solid var(--border-color);
  padding: 50px;
  border-radius: 24px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 25px 50px rgba(212, 175, 55, 0.12),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-muted);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon-box {
  background: var(--color-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

.service-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.service-desc {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-gold-muted);
  font-size: 0.95rem;
}

.service-list li svg {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- 5. USP GRID SECTION --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.usp-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  transition: var(--transition-bounce);
}

.usp-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.usp-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.usp-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- 6. PROCESS STEPS TIMELINE --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.25) 20%,
    rgba(212, 175, 55, 0.25) 80%,
    transparent
  );
  z-index: 1;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  transition: var(--transition-bounce);
}

.process-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.process-step {
  position: absolute;
  top: -20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(212, 175, 55, 0.06);
  transition: var(--transition-smooth);
}

.process-card:hover .process-step {
  color: rgba(212, 175, 55, 0.15);
}

.process-card-title {
  font-size: 1.2rem;
  font-weight: 850;
  margin-top: 15px;
  margin-bottom: 12px;
}

.process-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- 7. CASES / RESULTS STORY --- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.case-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.12);
}

.case-image-wrapper {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  background-color: #111;
}

.case-image-wrapper img {
  width: 100%;
  height: 100%;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover .case-image-wrapper img {
  transform: scale(1.05);
}

.case-body {
  padding: 40px;
}

.case-platform {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.case-name {
  font-size: 1.8rem;
  font-weight: 850;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.case-meta {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.case-metric-val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text-white);
}

.case-metric-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* --- 8. PRICING PACKAGES GRID --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-bounce);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.pricing-card.popular {
  border: 2px solid var(--color-gold);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
  background: linear-gradient(
    180deg,
    var(--bg-card) 0%,
    rgba(20, 18, 14, 0.8) 100%
  );
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--color-gold);
  box-shadow:
    0 30px 60px rgba(212, 175, 55, 0.25),
    0 0 30px rgba(212, 175, 55, 0.1);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: var(--bg-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--font-heading);
  box-shadow: var(--glow-gold);
}

.pricing-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.pricing-card.popular .pricing-header {
  border-bottom: 1px solid var(--border-gold-muted);
}

.pricing-tier-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}

.price-symbol {
  font-size: 1.8rem;
  vertical-align: super;
  font-weight: 700;
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-tier-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.pricing-features {
  flex-grow: 1;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-features li svg {
  color: var(--color-text-muted);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-cta-wrap {
  margin-top: 40px;
}

.pricing-btn {
  width: 100%;
}

/* --- 9. TESTIMONIALS SLIDER --- */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
}

.testimonial-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.star-rating {
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-gold-muted);
  margin-bottom: 35px;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  font-size: 4rem;
  font-family: var(--font-heading);
  color: rgba(212, 175, 55, 0.08);
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  content: "“";
  top: -30px;
  left: -20px;
}

.testimonial-quote::after {
  content: "”";
  bottom: -60px;
  right: -20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2a2a2a;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: transparent;
  color: var(--color-text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* --- 10. FAQ ACCORDION --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-white);
  font-family: var(--font-heading);
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-answer {
  padding: 0 30px 24px 30px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- 11. CONTACT & LEAD FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-desc {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-item-details {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--color-text-dark);
  text-transform: uppercase;
  font-weight: 600;
}

.contact-item-value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-control.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.error-feedback {
  color: #ef4444;
  font-size: 0.77rem;
  font-weight: 500;
  margin-top: 6px;
  display: block;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 48px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-radius: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 24px;
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.success-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-message {
  color: var(--color-text-muted);
}

/* --- 12. FOOTER --- */
.footer {
  background-color: #030303;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-text-dark);
  font-size: 0.85rem;
}

.footer-copy {
  color: var(--color-text-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--color-text-muted);
}

/* --- FLOATING WHATSAPP CHAT WIDGET --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0c0c0c;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  box-shadow: var(--glow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-bounce);
  animation: whatsappPulse 3s infinite alternate ease-in-out;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  opacity: 0;
  z-index: -1;
  animation: whatsappSonar 2.5s infinite ease-out;
}

.floating-whatsapp::after {
  animation-delay: 1.25s;
}

.floating-whatsapp:hover {
  background-color: #121212;
  transform: scale(1.1) rotate(5deg);
  border-color: #25d366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after {
  border-color: #25d366;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--color-gold);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover svg {
  fill: #25d366;
}

@keyframes whatsappPulse {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes whatsappSonar {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* --- MOBILE RESPONSIVENESS MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }

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

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process-grid::after {
    display: none;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

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

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

  .service-card {
    padding: 30px;
  }

  .testimonial-container {
    padding: 30px 20px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-col {
    margin-bottom: 20px;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* --- BRAND LOGO IMAGE ENHANCEMENTS --- */
.logo-img {
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: var(--transition-bounce);
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.55));
}

/* --- KEYWORD SEO CONTENT SECTION --- */
.seo-keywords-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.seo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition-bounce);
}

.seo-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.seo-card-title {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.keyword-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.keyword-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-muted);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.keyword-tag:hover {
  background: var(--color-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

/* --- LEGAL & PRIVACY PAGES STYLING --- */
.legal-page-header {
  padding: 160px 0 60px 0;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 100%
  );
  border-bottom: 1px solid var(--border-color);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 100px 24px;
}

.legal-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-list {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.legal-list li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.back-home-btn:hover {
  color: var(--color-text-white);
  transform: translateX(-4px);
}
