/* ==========================================================================
   ND & ASSOCIATES - PREMIUM FINANCIAL ADVISORY WEBSITE
   Design System & Master Stylesheet
   Theme: Deep Imperial Navy, Pure White, & Champagne Gold
   Fully Responsive & Mobile Optimized
   ========================================================================== */

:root {
  /* Primary Color Palette */
  --navy-950: #040d1a;
  --navy-900: #07162c;
  --navy-850: #0b203e;
  --navy-800: #102a52;
  --navy-700: #16386d;
  --navy-600: #1f4e96;
  --navy-500: #2b6cb0;
  
  /* Gold Accent Palette */
  --gold-500: #d4af37;
  --gold-400: #e5c158;
  --gold-300: #f3d679;
  --gold-600: #b89324;
  --gold-700: #937315;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f6e27a 50%, #b89324 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);

  /* Neutral & Base Colors */
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-dark: rgba(11, 32, 62, 0.75);
  --border-light: #e2e8f0;
  --border-dark: rgba(212, 175, 55, 0.2);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #0ea5e9;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 20px 40px -15px rgba(7, 22, 44, 0.25);
  --shadow-navy: 0 20px 35px -10px rgba(4, 13, 26, 0.5);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   CSS Reset & Base Setup
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.container-narrow {
  max-width: 960px;
}

/* ==========================================================================
   Typography & Utility Classes
   ========================================================================== */

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

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 2vw, 0.8125rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-600);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem) auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

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

.section-subtitle {
  font-size: clamp(0.925rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.section-subtitle.light {
  color: var(--text-light-muted);
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  padding: 0.85rem 1.65rem;
  min-height: 48px;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: var(--navy-950);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid var(--navy-800);
}

.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-500);
}

.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-lg {
  padding: 1rem clamp(1.25rem, 3vw, 2.2rem);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  min-height: 52px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  min-height: 40px;
  border-radius: var(--radius-sm);
}

.btn-pulse {
  animation: pulse-glow 2.5s infinite;
}

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

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */

.top-bar {
  background: var(--navy-950);
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item a:hover {
  color: var(--gold-400);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 22, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(4, 13, 26, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 0.1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  max-width: 75%;
}

.brand-emblem {
  width: clamp(38px, 8vw, 44px);
  height: clamp(38px, 8vw, 44px);
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.brand-emblem svg {
  width: 60%;
  height: 60%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: clamp(0.62rem, 1.8vw, 0.6875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold-300);
  opacity: 0.9;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-300);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--gold-400);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(31, 78, 150, 0.35) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
              linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.hero-badge .stars {
  color: var(--gold-400);
  display: inline-flex;
  gap: 2px;
}

.hero-headline {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.hero-intro-box {
  background: rgba(11, 32, 62, 0.65);
  border-left: 4px solid var(--gold-500);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.hero-namaste {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.hero-namaste strong {
  color: var(--gold-400);
}

.hero-intro-text {
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.25rem;
  width: 100%;
}

.hero-trust-highlights {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: #cbd5e1;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold-400);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Portrait Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(145deg, rgba(22, 56, 109, 0.6) 0%, rgba(7, 22, 44, 0.9) 100%);
  padding: 10px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-navy), 0 0 35px rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(12px);
}

.portrait-inner {
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  position: relative;
  background: #021024;
}

.portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.02);
}

.portrait-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.9rem 1rem;
  background: linear-gradient(to top, rgba(4, 13, 26, 0.95) 0%, rgba(4, 13, 26, 0.7) 60%, transparent 100%);
  text-align: center;
}

.portrait-name {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.portrait-designation {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-badge {
  position: absolute;
  background: rgba(7, 22, 44, 0.92);
  border: 1.5px solid var(--gold-500);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  backdrop-filter: blur(10px);
  z-index: 10;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: -12px;
  right: -12px;
  animation-delay: 0s;
}

.floating-badge.badge-bottom {
  bottom: 20px;
  left: -15px;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-text-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}

.badge-text-lbl {
  font-size: 0.7rem;
  color: var(--gold-300);
  font-weight: 500;
}

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

/* ==========================================================================
   Trust & Statistics Section
   ========================================================================== */

.stats-section {
  position: relative;
  background: var(--navy-900);
  padding: 0 0 clamp(2.5rem, 5vw, 4rem) 0;
  margin-top: -2rem;
  z-index: 10;
}

.stats-card-container {
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--navy-950) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.stat-box {
  text-align: center;
  position: relative;
  padding: 0.5rem 1rem;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem auto;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.stat-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.stat-number .gold {
  color: var(--gold-400);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background-color: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image-card {
  position: relative;
  width: 100%;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--white);
  outline: 1px solid var(--border-light);
  background: var(--navy-900);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.experience-stamp {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--gold-gradient);
  color: var(--navy-950);
  padding: clamp(0.85rem, 2vw, 1.25rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  font-family: var(--font-heading);
  text-align: center;
  max-width: 160px;
  border: 2px solid var(--white);
}

.experience-stamp .stamp-val {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.experience-stamp .stamp-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

.about-intro-p {
  font-size: clamp(1.025rem, 2vw, 1.125rem);
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-body-p {
  font-size: clamp(0.9rem, 2vw, 0.975rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.mission-highlight-card {
  background: linear-gradient(135deg, #07162c 0%, #0b203e 100%);
  border-left: 4px solid var(--gold-500);
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.mission-author {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-icon svg {
  width: 14px;
  height: 14px;
}

.pillar-title {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--navy-900);
  margin-bottom: 0.15rem;
}

.pillar-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #f1f5f9 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy-800);
  transition: background var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
  background: var(--gold-gradient);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 16px rgba(7, 22, 44, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
}

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

.service-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.service-card:hover .service-number {
  color: rgba(212, 175, 55, 0.18);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.45rem;
}

.service-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

.service-features-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.service-feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-action {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-600);
}

/* Strategic Pillars Strip */
.strategic-pillars-strip {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-navy);
}

.pillars-strip-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.pillars-strip-title {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.pillars-strip-subtitle {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.pillars-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.pillar-badge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.pillar-badge-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

.pillar-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pillar-badge-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pillar-badge-sub {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   Interactive Financial Calculators
   ========================================================================== */

.calculators-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background-color: var(--white);
}

.calc-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.calc-tab-btn {
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.calc-tab-btn.active, .calc-tab-btn:hover {
  background: var(--navy-900);
  color: var(--gold-300);
  border-color: var(--gold-500);
  box-shadow: 0 4px 12px rgba(7, 22, 44, 0.15);
}

.calc-card-container {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  max-width: 1060px;
  margin: 0 auto;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.calc-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.calc-value-display {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-700);
  background: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #cbd5e1;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results-box {
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-navy);
}

.calc-result-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.calc-result-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.calc-result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.breakdown-row strong {
  color: var(--white);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-us-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.why-card {
  background: rgba(11, 32, 62, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 2rem);
  backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
}

.why-card:hover {
  background: rgba(16, 42, 82, 0.85);
  border-color: var(--gold-400);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-info-card {
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  box-shadow: var(--shadow-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-header {
  margin-bottom: 1.75rem;
}

.contact-business-name {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-consultant-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 0.15rem;
}

.contact-consultant-title {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold-300);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-size: clamp(0.9rem, 2vw, 0.975rem);
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}

.contact-detail-value a:hover {
  color: var(--gold-400);
}

.contact-actions-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.45rem;
}

.contact-form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-label span.req {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #f8fafc;
  color: var(--text-dark);
  font-size: 0.925rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 56, 109, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   Footer & Legal Section
   ========================================================================== */

.site-footer {
  background: var(--navy-950);
  color: #cbd5e1;
  padding-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
}

.disclaimer-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}

.disclaimer-text {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a:hover {
  color: var(--gold-300);
}

/* ==========================================================================
   Explore Associates & Institutional Partners Section
   ========================================================================== */

.explore-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: radial-gradient(circle at 10% 20%, rgba(22, 56, 109, 0.35) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
              linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  z-index: 2;
}

.explore-card {
  background: rgba(11, 32, 62, 0.65);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.85rem);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.explore-card:hover {
  transform: translateY(-6px);
  background: rgba(16, 42, 82, 0.85);
  border-color: var(--gold-400);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.explore-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.explore-category-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.explore-status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

.explore-status-dot .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.explore-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
}

.explore-associate-name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.explore-associate-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 0.85rem;
}

.explore-associate-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.explore-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.15rem;
}

.explore-portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.explore-portal-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-950);
  border-color: var(--gold-300);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   Floating WhatsApp Icon
   ========================================================================== */

.whatsapp-float-icon {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  text-decoration: none;
  transition: all var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.4);
  touch-action: manipulation;
}

.whatsapp-float-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.4);
  color: var(--white);
}

.whatsapp-float-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .whatsapp-float-icon {
    display: none !important; /* Mobile already has dedicated WhatsApp button in sticky bottom bar */
  }
}

