/* ==========================================================================
   TRADING PLANET ADVISORY - STYLE SHEET (Sleek Light Theme)
   ==========================================================================
   This stylesheet is structured with CSS Custom Properties (Variables) at the 
   top level. To modify colors, typography, or spacing globally without breaking 
   layouts, simply adjust the values in the :root selector.
   ========================================================================== */

/* 1. DESIGN TOKENS & VARIABLE DECLARATIONS */
:root {
  /* Color Palette - Sleek Light Theme (Corporate Finance Focus) */
  --color-primary: #1e40af;       /* Royal Blue - Trust & Stability */
  --color-primary-light: #eff6ff; /* Very light blue for subtle backgrounds */
  --color-primary-hover: #1d4ed8;
  
  --color-secondary: #15803d;     /* Forest Green - Growth & Profitability */
  --color-secondary-light: #f0fdf4;
  --color-secondary-hover: #166534;
  
  --color-accent: #f59e0b;        /* Gold/Amber for VIP highlights */
  --color-accent-light: #fffbeb;
  
  --color-bg-body: #f8fafc;       /* Slate 50 - Very clean neutral background */
  --color-bg-card: #ffffff;       /* Pure white for containers & cards */
  --color-bg-alt: #f1f5f9;        /* Slate 100 - Alternating section backgrounds */
  
  --color-text-main: #0f172a;     /* Slate 900 - High contrast readable text */
  --color-text-muted: #475569;    /* Slate 600 - Secondary text, captions, labels */
  --color-text-light: #94a3b8;    /* Slate 400 - Disclaimers and borders */
  
  --color-border: #e2e8f0;        /* Slate 200 - Soft borders */
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Layout Sizing & Spacing (Scale-based) */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  
  /* Performance Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* 2. BASE STYLES & RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Headings */
h1, h2, h3, h4 {
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--color-text-main);
}

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

a:hover {
  color: var(--color-primary-hover);
}

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

/* 3. UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

.section-padding {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

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

/* 4. HEADER & NAVIGATION */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.logo-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

/* Active Link State */
.nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  font-weight: var(--font-weight-semibold);
  border-bottom: 2px solid var(--color-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Compliance Badge */
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
  border: 1px solid rgba(21, 128, 61, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
}

.compliance-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* SEBI Header Badge with Logo */
.sebi-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(30, 64, 175, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.sebi-header-badge:hover {
  border-color: var(--color-primary);
  background-color: #e0f2fe;
}

.sebi-logo-img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  border-radius: 2px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hamburger animations */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* 5. HERO SECTION */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--color-primary-light) 0%, transparent 50%), var(--color-bg-body);
  overflow: hidden;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.experience-tag {
  align-self: flex-start;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* Statistics Badges */
.hero-stats {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.stat-box {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--spacing-sm);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

/* Button Group */
.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.85rem 1.75rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

/* Hero Advisor Image Card */
.hero-image-wrapper {
  position: relative;
  justify-self: center;
}

.hero-image-card {
  position: relative;
  background-color: var(--color-bg-card);
  padding: var(--spacing-xs);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  max-width: 420px;
}

.hero-img {
  width: 100%;
  border-radius: calc(var(--border-radius-lg) - 6px);
  object-fit: cover;
}

.hero-team-container {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.hero-team-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

.team-caption-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-card);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.caption-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.floating-text-title {
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
}

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

/* 6. SERVICES SECTION & PAGE */
.section-header {
  max-width: 600px;
  margin: 0 auto var(--spacing-xl) auto;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--spacing-xs);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.service-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.service-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-bg.indian {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.service-icon-bg.forex {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xs);
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
}

.check-bullet {
  color: var(--color-secondary);
  font-weight: bold;
  flex-shrink: 0;
}

/* 7. PRICING SECTION & PAGE */
.pricing-section {
  background-color: var(--color-bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-md);
  align-items: stretch;
}

.pricing-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: translateY(-4px) scale(1.02);
}

.card-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
}

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

.plan-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  margin-bottom: var(--spacing-xs);
}

.plan-price {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.pricing-cta {
  width: 100%;
}

/* 8. CONTACT SECTION & PAGE */
.contact-section {
  background: radial-gradient(circle at 10% 90%, var(--color-secondary-light) 0%, transparent 40%), var(--color-bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.info-item {
  display: flex;
  gap: var(--spacing-sm);
  background-color: var(--color-bg-card);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.info-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Form Styling */
.form-card {
  background-color: var(--color-bg-card);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

/* Form Feedback States */
.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
  display: none;
}

.form-status.success {
  display: block;
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.2);
}

/* 9. LEGAL & GENERAL CONTENT LAYOUT (For standalone content pages) */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  padding: var(--spacing-lg) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.legal-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-main);
}

.legal-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.legal-content p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--color-text-muted);
}

/* FAQ Accordion Styling (For about.html) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 6px;
}

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

/* 10. FOOTER & COMPLIANCE */
.footer {
  background-color: #0f172a; /* Custom dark background for strong contrast */
  color: #94a3b8; /* Slate 400 */
  padding-top: 15px;
  padding-bottom: 12px;
  border-top: 3px solid var(--color-primary);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #1e293b; /* Slate 800 */
  padding-bottom: 8px;
}

.footer-links-inline {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  align-items: center;
}

.footer-links-inline a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
}

.footer-links-inline a:hover {
  color: white;
  text-decoration: underline;
}

.footer-disclaimer-block {
  font-size: 0.62rem;
  line-height: 1.3;
  color: #64748b;
  margin-bottom: 8px;
}

.footer-disclaimer-block p {
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
}


/* 11. KEYFRAME ANIMATIONS */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(21, 128, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0);
  }
}

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

/* ==========================================================================
   12. RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --spacing-xl: 3rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1; /* Place image on top on tablet/mobile */
  }
  
  .hero-team-container {
    max-width: 520px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--spacing-md);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-compliance-box {
    grid-column: span 2;
  }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: var(--shadow-lg);
    gap: var(--spacing-xs);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }
  
  .nav-link.active {
    border-bottom: none;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
  }
  
  .nav-toggle {
    display: block; /* Show hamburger button */
  }
  
  #header-compliance-badge {
    display: none; /* Hide badge on mobile header to save space */
  }
  
  #mobile-compliance-badge {
    display: inline-flex !important;
    align-self: center;
  }
}

@media (max-width: 600px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
  }
  
  .stat-box {
    border-left: 2px solid var(--color-primary);
    border-bottom: none;
    padding-left: 8px;
    padding-bottom: 0;
    width: auto;
    flex: 1;
    text-align: left;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.68rem;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-compliance-box {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .table-controls {
    flex-wrap: nowrap;
    gap: 6px;
  }
  
  .table-btn,
  .export-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .export-btn svg {
    width: 14px;
    height: 14px;
  }
}

.verified-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   GROWTH STOCK INTELLIGENCE DASHBOARD
   ========================================================================== */
.intelligence-scroll-container {
  position: relative;
  width: 100%;
  margin-top: var(--spacing-md);
}

.intelligence-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: var(--spacing-md);
  padding: 15px 5px;
  scrollbar-width: none; /* Firefox */
}

.intelligence-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.intelligence-card {
  flex: 0 0 320px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intelligence-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.intel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.intel-stock-name {
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  line-height: 1.25;
}

.intel-stock-symbol {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  background-color: var(--color-bg-alt);
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
}

.intel-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.intel-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
}

.intel-change {
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
}

.intel-change.up {
  color: var(--color-secondary);
}

.intel-change.down {
  color: #ef4444;
}

.intel-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

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

.intel-stat-label {
  color: var(--color-text-light);
  font-size: 0.75rem;
}

.intel-stat-value {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
}

.intel-stat-value.up {
  color: var(--color-secondary);
}

.intel-verdict-box {
  background-color: var(--color-bg-alt);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  border-left: 2px solid var(--color-primary);
  flex-grow: 1;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.slider-btn.prev {
  left: -22px;
}

.slider-btn.next {
  right: -22px;
}

/* Spinner Loader */
.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0;
  gap: var(--spacing-sm);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .slider-btn.prev {
    left: 2px;
  }
  
  .slider-btn.next {
    right: 2px;
  }
}

/* ==========================================================================
   STOCKS ON THE MOVE TABLE SECTION
   ========================================================================== */
.stocks-on-move-section {
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-xl) 0;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.tab-buttons {
  display: flex;
  gap: var(--spacing-xs);
}

.table-btn {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: var(--font-weight-semibold);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  color: var(--color-text-muted);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.table-btn:hover {
  border-color: var(--color-text-light);
}

.table-btn.active.btn-up {
  background-color: #10b981;
  color: white;
  border-color: #10b981;
}

.table-btn.active.btn-down {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

.export-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.export-btn:hover {
  background-color: var(--color-border);
  color: var(--color-text-main);
}

.stocks-table-container {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  background-color: var(--color-bg-card);
}

.stocks-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.stocks-table th, 
.stocks-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.stocks-table th {
  position: sticky;
  top: 0;
  background-color: var(--color-bg-alt);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-main);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.stocks-table tr:last-child td {
  border-bottom: none;
}

.stocks-table tr:hover td {
  background-color: var(--color-bg-alt);
}

.stock-row-name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.stock-row-name:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.stock-val-positive {
  color: #10b981;
  font-weight: var(--font-weight-semibold);
}

.stock-val-negative {
  color: #ef4444;
  font-weight: var(--font-weight-semibold);
}

/* Floating WhatsApp Chat Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  z-index: 99999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating-widget:hover {
  transform: scale(1.08) translateY(-2px);
}

@media (max-width: 600px) {
  .whatsapp-floating-widget {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Horizontal Scrollable Container with Hidden Scrollbars */
.scrollable-hidden-container {
  display: flex;
  overflow-x: auto;
  gap: var(--spacing-md);
  padding: 10px var(--spacing-xs);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scrollable-hidden-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.scrollable-hidden-container .service-card {
  flex: 0 0 320px; /* Fixed width for horizontal scrolling */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .scrollable-hidden-container {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }
  
  .scrollable-hidden-container .service-card {
    flex: 0 0 280px; /* Slightly narrower on mobile */
  }
}





