/* ===== DHAN SURAKSHA — Premium Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --gold-dark: #9A7B2F;
  --gold: #D4A843;
  --gold-light: #F5E6A3;
  --gold-shimmer: #FFF8DC;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-glass: rgba(212, 168, 67, 0.05);
  --text-primary: #0A0A0A;
  --text-secondary: #222222;
  --text-muted: #444444;
  --border-gold: rgba(212, 168, 67, 0.2);
  --shadow-gold: 0 10px 50px rgba(212, 168, 67, 0.12);
  --gradient-gold: linear-gradient(135deg, #9A7B2F 0%, #D4A843 30%, #F5E6A3 60%, #D4A843 100%);
  --gradient-gold-text: linear-gradient(90deg, #9A7B2F, #D4A843, #9A7B2F);
  --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  /* Slightly larger */
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 500;
  /* Bumped weight */
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

/* --- Shimmer Animation --- */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(212, 168, 67, 0);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  transition: var(--transition);
  background: #05080A;
  /* Solid Dark Obsidian */
  border-bottom: 2px solid var(--gold-dark);
  /* Luxury Gold frame */
}

.navbar.scrolled {
  padding: 12px 0;
  background: #0D0F12;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  /* Wider container to move logo further left */
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  /* Push to the left */
}

.navbar-logo img {
  height: 75px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 2;
  /* Center the links in the middle */
  justify-content: center;
}

.nav-actions {
  flex: 1;
  /* Push to the right */
  display: flex;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}



.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  font-weight: 700;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: #000000;
  /* High-contrast black text for luxury gold buttons */
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
}

.nav-mobile-cta {
  display: none !important;
  /* Hidden on desktop by default */
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gradient-gold);
  color: #FFFFFF;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}



.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 140px;
  /* Space for the fixed header */
}

/* General spacing for all sub-pages */
.first-section {
  padding-top: 160px !important;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
}



.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  display: block;
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-description {
  font-size: 1.2rem;
  /* Slightly larger */
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 500;
  /* Bumped weight */
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-gold);
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
  /* Much cleaner and clearer */
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image img {
  max-height: 550px;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gold);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about .container {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-image-wrapper {
  flex: 1;
}

/* Base Features section for home */
.features {
  background: var(--bg-secondary);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-gold);
}



.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--bg-glass);
}

.about-feature .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-primary);
  text-align: center;
}

.how-it-works .section-label,
.how-it-works .section-subtitle {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.step-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a0a0a;
  position: relative;
  z-index: 2;
}

.step-card .step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   WHY US — Comparison Section
   ============================================ */
.why-us {
  background: var(--bg-secondary);
  overflow: hidden;
}

.why-us .container {
  text-align: center;
}

.why-us .section-label,
.why-us .section-subtitle {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.comparison-wrapper {
  margin-top: 60px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.comparison-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  gap: 32px;
}

.comparison-col {
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: left;
}

.comparison-col.risk {
  background: rgba(200, 50, 50, 0.08);
  border: 1px solid rgba(200, 50, 50, 0.2);
}

.comparison-col.safe {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold);
}

.comparison-col h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-col.risk h3 {
  color: #E74C3C;
}

.comparison-col.safe h3 {
  color: var(--gold);
}

.comparison-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.comparison-col.risk li::before {
  content: '✗';
  color: #E74C3C;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-col.safe li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg-primary);
}

.services .container {
  text-align: center;
}

.services .section-label,
.services .section-subtitle {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212, 168, 67, 0.15);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   SAVINGS CALCULATOR
   ============================================ */
.calculator {
  background: var(--bg-secondary);
  text-align: center;
}

.calculator .section-label,
.calculator .section-subtitle {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.calc-container {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.calc-group {
  margin-bottom: 30px;
  text-align: left;
}

.calc-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.calc-group input,
.calc-group select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.calc-group input:focus,
.calc-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.calc-group select option {
  background: #FFFFFF;
  color: #1A1A1A;
}

.calc-result {
  margin-top: 32px;
  padding: 32px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.calc-result .amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-result .sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
  background: var(--bg-primary);
  text-align: center;
}

.trust .section-label,
.trust .section-subtitle {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Removed obsolete selector */

.trust-item {
  padding: 36px 24px;
  text-align: center;
}

.trust-item .trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
}

.contact .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info>p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--gold);
  transform: translateX(8px);
}

.contact-method .method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method span {
  font-size: 1rem;
  font-weight: 600;
  /* Darker and more focused */
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: #FFFFFF;
}

.contact-form .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #05080A 0%, #0D0F12 100%);
  padding: 100px 0 0;
  color: #FFFFFF;
  position: relative;
  border-top: 3px solid var(--gold-dark);
  /* Luxury Gold top frame */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 85px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.05)) contrast(1.1) brightness(1.2);
}

.footer-brand p {
  font-size: 0.9rem;
  color: #E5E5E5;
  /* Readability on dark background */
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.95rem;
  color: #E5E5E5;
  font-weight: 500;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  /* Adjust for visibility */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #999999;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-gold 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .about .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-mobile-cta {
    display: inline-flex !important;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    display: none;
    /* Hide the separate desktop button on mobile */
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 32px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: left;
    align-items: flex-start;
  }

  .footer-col h4::after {
    left: 0;
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 30px 0;
  }

  /* Centered Hero on Mobile */
  .hero-badge {
    margin: 0 auto 20px;
    width: fit-content;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: #000000;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .first-section {
    padding-top: 130px !important;
  }

  .calc-container {
    padding: 28px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}