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

:root {
  /* Dark Theme Variables (Default) */
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-elevated: #1A1A1A;
  --text: #FFFFFF;
  --text-muted: #A0A0A0;
  --text-dim: #707070;
  --accent-primary: #FF6B35;
  --accent-secondary: #c59a0e;
  --accent-success: #00C896;
  --accent-warning: #FF8C42;
  --accent-danger: #FF5757;
  --border: #2A2A2A;
  --border-light: #3A3A3A;
  --glass: rgba(17, 17, 17, 0.8);
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --gradient-accent: linear-gradient(135deg, #FFD23F 0%, #FFA726 100%);
  --gradient-surface: linear-gradient(180deg, #111111 0%, #0F0F0F 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* Logo white background for visibility */
.logo {
  background: #b1868600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

/* Footer logo also gets white background */
.footer-brand .logo {
  background: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  display: none;
}

/* Light Theme Variables */
.theme-light {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-elevated: #F8F8F8;
  --text: #1A1A1A;
  --text-muted: #4A4A4A;
  --text-dim: #6A6A6A;
  --accent-primary: #E8581C;
  --accent-secondary: #D4AF37;
  --accent-success: #059669;
  --accent-warning: #EA580C;
  --accent-danger: #DC2626;
  --border: #E5E7EB;
  --border-light: #D1D5DB;
  --glass: rgba(255, 255, 255, 0.9);
  --gradient-primary: linear-gradient(135deg, #E8581C 0%, #EA580C 100%);
  --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(232, 88, 28, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
.display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0.2em 0 0.4em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kicker {
  color: var(--accent-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 65ch;
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section--flush {
  padding: 0;
}

.section--tinted {
  background: var(--gradient-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--surface-elevated);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skip-link:focus {
  position: fixed;
  top: 20px;
  left: 20px;
  width: auto;
  height: auto;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  color: black;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.site-header[data-shrink="true"] {
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Force header always white */
.theme-dark .site-header {
  background-color: white !important;
  color: black !important;
}

/* ===== NAVIGATION ===== */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}

.logo-mark {
  height: 60px;
  width: auto;
}

.site-header[data-shrink="true"] .logo-mark {
  height: 48px;
}

/* ===== THEME TOGGLE ===== */

/* Section Header */
.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-kicker {
  display: inline-block;
  color: var(--accent-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(255, 210, 63, 0.1);
  border: 1px solid rgba(255, 210, 63, 0.3);
  border-radius: 999px;
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


  
  .site-header {
    padding: 18px 0;
  }
  
  .logo-mark {
    height: 45px;
  }
  
  .nav-controls {
    order: 2;
  }
  
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
  }
  
  /* FORCE SOLID BACKGROUND - NO TRANSPARENCY */
  .nav-menu {
    position: fixed;
    inset: auto 0 0 0;
    top: 80px;
    display: none;
    flex-direction: column;
    gap: 0;
    /* FORCE SOLID BLACK BACKGROUND */
    background: #111111 !important; /* Dark solid background */
    backdrop-filter: none !important; /* Remove blur effect */
    border-top: 1px solid var(--border);
    padding: 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
  
  /* Show menu when JavaScript adds .show class */
  .nav-menu.show {
    display: flex;
  }
  
  /* Menu items styling */
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #2A2A2A;
    background: transparent;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0;
    display: block;
    transition: all 0.3s ease;
    background: transparent;
    color: #FFFFFF; /* Force white text */
  }
  
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: #1A1A1A !important; /* Slightly lighter hover */
    color: #FFD23F; /* Yellow accent color */
  }
  
  /* Button in mobile menu */
  .nav-menu .btn {
    margin: 12px 24px 20px 24px;
    border-radius: var(--radius-md);
    width: calc(100% - 48px);
    max-width: none;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
  }
  
  .nav-menu .btn:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #E57A32 100%) !important;
    transform: translateY(-1px);
  }
  
  /* Light theme - FORCE SOLID WHITE */
  .theme-light .nav-menu {
    background: #FFFFFF !important; /* Force solid white */
    border-top-color: #E5E7EB;
  }
  
  .theme-light .nav-menu li {
    border-bottom-color: #E5E7EB;
  }
  
  .theme-light .nav-menu a {
    color: #1A1A1A !important; /* Force dark text */
  }
  
  .theme-light .nav-menu a:hover,
  .theme-light .nav-menu a:focus {
    background: #F8F8F8 !important; /* Light gray hover */
    color: #D4AF37 !important; /* Gold accent */
  }
  
  /* Rest of styles */
  .btn {
    min-height: 44px;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .theme-toggle {
    min-height: 44px;
    min-width: 44px;
  }


  
  /* Enhanced Mobile Hero */
  .hero-bg {
    min-height: 100vh;
    padding: 20px 0;
    background-attachment: scroll; /* Better mobile performance */
  }
  
  .hero-content {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .display {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.2;
    margin: 0.3em 0 0.5em;
  }
  
  .kicker {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto 2rem auto;
    max-width: 90%;
  }
  
  .cta-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
  }

/* Smaller tablets and large phones */
@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* All multi-column grids become single column */
  .cards,
  .cards--3,
  .curriculum-grid,
  .instructors,
  .pt-cards {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature {
    padding: 20px;
  }
  
  /* Hero adjustments */
  .hero-content {
    padding: 80px 0 50px;
  }
  
  .display {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .lead {
    font-size: 1rem;
    max-width: 95%;
  }
  
  /* Footer becomes single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-top {
    padding: 40px 0;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* Reduced card padding for smaller screens */
  .split-content,
  .stripe-item,
  .card,
  .curr-card,
  .inst-card {
    padding: 20px;
  }
  
  .pt-card {
    padding: 24px 20px;
  }
  
  /* Typography scaling */
  .cta-band h2 {
    font-size: 2rem;
  }
  
  .section-head h2 {
    font-size: 1.75rem;
  }
  
  .how h2,
  .pricing-teaser h2 {
    font-size: 1.75rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  /* Enhanced mobile hero */
  .hero-content {
    padding: 70px 0 40px;
  }
  
  .display {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    margin: 0.2em 0 0.4em;
  }
  
  .kicker {
    font-size: 0.85rem;
  }
  
  .lead {
    font-size: 1rem !important;
    line-height: 1.5;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 1rem;
    max-width: 260px;
  }
  
  /* Disable parallax on mobile for better performance */
  .hero-bg,
  .cta-band {
    background-attachment: scroll !important;
  }
  
  /* Mobile instructor cards layout */
  .inst-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .inst-photo {
    align-self: center;
    margin-bottom: 12px;
  }
  
  /* Prevent iOS zoom on form inputs */
  input, textarea, select {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
  }
}

/* Very small screens (older phones) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }
  
  .nav-controls {
    gap: 4px;
  }
  
  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 36px;
  }
  
  .theme-icon {
    font-size: 16px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  
  .nav-menu {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* Smooth theme transitions */
* {
  transition: background-color 0.3s ease, 
              border-color 0.3s ease, 
              color 0.3s ease,
              box-shadow 0.3s ease;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  [data-reveal] {
    transform: none !important;
  }
  
  .hero-bg::before,
  .stripe::before,
  .cta-band::before {
    animation: none !important;
  }
  
  /* Disable hover transforms on mobile for better performance */
  @media (max-width: 900px) {
    .feature:hover,
    .card:hover,
    .curr-card:hover,
    .inst-card:hover,
    .pt-card:hover {
      transform: none !important;
    }
  }
}


/* ====================================
   SERVICES PAGE - PROFESSIONAL DESIGN
   ==================================== */

/* Global Variables */
:root {
  --color-primary: #E53935;
  --color-secondary: #FF9800;
  --color-accent: #FFC107;
  --color-black: #111;
  --color-white: #fff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  --color-success: #28a745;
  --color-danger: #dc3545;
  
  /* Dark Theme Specific Colors */
  --dark-bg-primary: #0f0f0f;
  --dark-bg-secondary: #1a1a1a;
  --dark-bg-tertiary: #262626;
  --dark-border: #404040;
  --dark-text-primary: #f5f5f5;
  --dark-text-secondary: #d4d4d4;
  --dark-text-muted: #a3a3a3;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.2);
  
  --shadow-dark-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-dark-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-dark-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-dark-xl: 0 16px 40px rgba(0, 0, 0, 0.6);
  
  --transition-base: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-sm);
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  color: black;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.site-header[data-shrink="true"] {
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Force header always white */
.theme-dark .site-header {
  background-color: white !important;
  color: black !important;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Center the navigation menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  border-left: 2px solid #e5e7eb;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 100px 20px 20px;
  gap: 8px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  will-change: right;
  display: flex;
}

.nav-menu:not(.show) {
  left: -100%;
}

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


/* Move nav-controls to the far right */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  flex-shrink: 0;
}

.logo-mark {
  height: 60px;
  width: auto;
}

.site-header[data-shrink="true"] .logo-mark {
  height: 48px;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
  color: #374151;
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle:hover {
  background: #f3f4f6;
  border-color: #E53935;
}

.theme-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.theme-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.theme-icon--sun {
  opacity: 1;
}

.theme-icon--moon {
  opacity: 0;
}

.theme-dark .theme-icon--sun {
  opacity: 0;
}

.theme-dark .theme-icon--moon {
  opacity: 1;
}

/* ===== MOBILE TOGGLE ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f9fafb;
  border: 2px solid #d1d5db;
  color: #374151;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-toggle:hover {
  background: #f3f4f6;
  border-color: #E53935;
}

.nav-toggle[aria-expanded="true"] {
  background: #E53935;
  border-color: #E53935;
  color: white;
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  position: relative;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
  position: absolute;
  left: 0;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 6px;
}

.hamburger-line:nth-child(3) {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}


/* ===== NAVIGATION MENU ===== */
.nav-menu a {
  color: #374151;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  background: #f3f4f6;
  color: #E53935;
}

.nav-menu a.active {
  background: rgba(229, 57, 53, 0.1);
  color: #E53935;
  font-weight: 600;
}

.nav-cta {
  background: #E53935 !important;
  color: white !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: #dc2626 !important;
  color: white !important;
}

/* ===== SERVICES INTRODUCTION ===== */
.services-intro {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.188) 0%, rgba(255, 93, 44, 0.062) 10%),
    url('res/home-1.png') center/cover no-repeat;
  padding: 120px 0 var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  min-height: 500px;
}

/* Alternative without image - gradient only */
.services-intro.no-bg-image {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* Dark theme hero background - FIXED: More transparent overlay to show image */
.theme-dark .services-intro {
  background: 
    linear-gradient(135deg, rgba(15, 15, 15, 0.75) 0%, rgba(26, 26, 26, 0.65) 100%),
    url('res/home-1.png') center/cover no-repeat;
  border-bottom-color: var(--dark-border);
  background-attachment: fixed;
}

/* Dark theme without image */
.theme-dark .services-intro.no-bg-image {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-black);
  color: var(--color-black);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Dark theme text */
.theme-dark .intro-content h1 {
  color: var(--dark-text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lead-statement {
  font-size: 1.25rem;
  color: var(--color-gray-700);
  margin-bottom: var(--space-md);
  line-height: 1.7;
  font-weight: var(--font-weight-medium);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.theme-dark .lead-statement {
  color: var(--dark-text-secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.mission-statement {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}

.theme-dark .mission-statement {
  color: var(--dark-text-secondary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Optional: Add overlay pattern */
.services-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .services-intro {
    padding: 100px 0 var(--space-2xl) 0;
    background-attachment: scroll;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .services-intro {
    padding: 80px 0 var(--space-xl) 0;
    min-height: 350px;
  }
}


/* ===== CORE SERVICES ===== */
.core-services {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.service-section {
  margin-bottom: var(--space-3xl);
  scroll-margin-top: 100px;
}

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

.service-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-md);
  position: relative;
}

.service-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.service-intro {
  font-size: 1.2rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== EDUCATION LEVELS ===== */
.education-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.level-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.level-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.level-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.level-card p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.level-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level-features li {
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  position: relative;
  color: var(--color-gray-700);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.level-features li:last-child {
  border-bottom: none;
}

.level-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: var(--space-xs);
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

/* ===== MARKET COVERAGE ===== */
.market-coverage {
  margin: var(--space-2xl) 0;
}

.market-coverage h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.market-item {
  background: var(--color-gray-100);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 5px solid var(--color-accent);
  transition: var(--transition-base);
}

.market-item:hover {
  background: var(--color-white);
  border-left-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.market-item h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.market-item p {
  color: var(--color-gray-600);
  margin: 0;
}

/* ===== EDUCATION METHODOLOGY ===== */
.education-methodology {
  background: var(--color-gray-100);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--space-2xl);
}

.education-methodology h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.education-methodology p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* ===== EDUCATION CTA SECTION ===== */
.education-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.education-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.education-cta-card h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.education-cta-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* ===== CTA BUTTONS STYLING ===== */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn.primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
  background: var(--color-white);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  border-color: var(--color-white);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.btn-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.2;
}

.cta-btn.primary .btn-text {
  color: var(--color-primary);
}

.cta-btn.primary .btn-subtitle {
  color: var(--color-gray-600);
}

.cta-btn.secondary .btn-text {
  color: var(--color-white);
}

.cta-btn.secondary .btn-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== COPY TRADING BENEFITS ===== */
.copy-trading-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
  width: 60px;
  background: var(--color-primary);
}

.benefit-card h3 {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--color-gray-600);
  margin: 0;
}

/* ===== COPY TRADING FEATURES ===== */
.copy-trading-features {
  background: var(--color-gray-100);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin: var(--space-xl) 0;
}

.copy-trading-features h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition-base);
}

.feature-item:hover {
  border-left-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.feature-item p {
  color: var(--color-gray-600);
  margin: 0;
}

/* ===== ADVISORY SERVICES ===== */
.advisory-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.advisory-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
}

.advisory-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 0 0 14px 14px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advisory-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.advisory-card:hover::after {
  transform: scaleX(1);
}

.advisory-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.advisory-card p {
  color: var(--color-gray-600);
  margin-bottom: var(--space-md);
}

.advisory-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advisory-features li {
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  position: relative;
  color: var(--color-gray-700);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.advisory-features li:last-child {
  border-bottom: none;
}

.advisory-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: var(--space-xs);
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

/* ===== MENTORSHIP APPROACH ===== */
.mentorship-approach {
  background: var(--color-gray-100);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--space-xl);
}

.mentorship-approach h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.mentorship-approach p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* ===== SEE MORE SECTION ===== */
.see-more-section {
  text-align: center;
  margin: var(--space-2xl) 0 var(--space-xl) 0;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-gray-200);
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-md) var(--space-xl);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.see-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: left 0.3s ease;
  z-index: 0;
}

.see-more-btn:hover::before {
  left: 0;
}

.see-more-btn:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.see-more-btn .btn-text,
.see-more-btn .btn-arrow {
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.see-more-btn .btn-arrow {
  font-size: 1.25rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.see-more-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.see-more-description {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin: var(--space-md) 0 0 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RISK DISCLOSURE BOX ===== */
.risk-disclosure-box {
  background: rgba(220, 53, 69, 0.05);
  border: 2px solid rgba(220, 53, 69, 0.2);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.risk-disclosure-box h3 {
  color: var(--color-danger);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.risk-disclosure-box h3::before {
  content: '⚠️';
  font-size: 1.25rem;
}

.risk-disclosure-box p {
  color: var(--color-gray-700);
  margin: 0;
  line-height: 1.7;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background: var(--color-gray-100);
  padding: var(--space-3xl) 0;
}

.value-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.value-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.value-intro {
  font-size: 1.2rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.value-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border-radius: 50%;
  opacity: 0.1;
  transition: var(--transition-base);
}

.value-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-item:hover::before {
  transform: scale(1.2);
  opacity: 0.15;
}

.value-item h3 {
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.value-item p {
  color: var(--color-gray-600);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ===== TRUST SIGNALS ===== */
.trust-signals {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.trust-signals h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.testimonial {
  background: var(--color-gray-100);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
}

.testimonial:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial blockquote {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  font-style: italic;
  margin: var(--space-sm) 0 var(--space-md) 0;
}

.testimonial cite {
  color: var(--color-gray-600);
  font-weight: var(--font-weight-bold);
  font-style: normal;
}

.compliance-notes {
  background: var(--color-gray-100);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.compliance-notes h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.compliance-notes p {
  color: var(--color-gray-600);
  margin: 0 auto;
  max-width: 800px;
}

/* ===== SERVICES CTA ===== */
.services-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.cta-button {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-decoration: none;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.cta-button:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cta-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.cta-button:hover .cta-title {
  color: var(--color-black);
}

.cta-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-button:hover .cta-subtitle {
  color: var(--color-gray-600);
}

.contact-information {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-information h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
  text-align: left;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.95);
  margin: var(--space-xs) 0;
}

.contact-details strong {
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

/* ===== RISK DISCLAIMER ===== */
.risk-disclaimer {
  background: var(--color-gray-100);
  padding: var(--space-3xl) 0;
  border-top: 3px solid var(--color-danger);
}

.risk-disclaimer h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-danger);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content p {
  color: var(--color-gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-left: 4px solid var(--color-danger);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.disclaimer-content strong {
  color: var(--color-danger);
  font-weight: var(--font-weight-bold);
}

.disclaimer-final {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-700);
  background: rgba(220, 53, 69, 0.05);
  border: 2px solid rgba(220, 53, 69, 0.2);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
}

.disclaimer-final a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: var(--font-weight-bold);
}

.disclaimer-final a:hover {
  color: var(--color-danger);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-gray-800);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand .footer-logo {
  height: auto;
  width: 150px;
}
.footer-brand .logo-mark {
  width: 100%;
  height: 48px;
}

.footer-brand .logo {
  background: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius-);
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--color-gray-300);
  margin: 0;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--color-gray-300);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  color: var(--color-gray-300);
  margin: var(--space-xs) 0;
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-700);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-gray-300);
  margin: 0;
}

.footer-logo-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 10px 22px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 45px;
  width: auto;
  display: block;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .site-header {
    padding: 12px 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    border-left: 2px solid #e5e7eb;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 20px 20px;
    gap: 8px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: none;
    left: auto;
  }
  
  .nav-menu[data-state="open"] {
    right: 0;
  }
  
  .nav-menu a {
    padding: 16px 20px;
    text-align: center;
    border: 1px solid transparent;
    font-size: 16px;
  }
  
  .nav-menu a:hover {
    border-color: #e5e7eb;
  }
  
  .nav-cta {
    margin-top: 10px;
    padding: 16px 20px !important;
  }
  
  .logo-mark {
    height: 40px;
  }
  
  .services-intro {
    padding: 100px 0 var(--space-2xl) 0;
  }
  
  .education-levels,
  .copy-trading-benefits,
  .advisory-services,
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .cta-options {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .core-services,
  .value-proposition,
  .trust-signals,
  .services-cta,
  .risk-disclaimer {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .services-intro {
    padding: 80px 0 var(--space-xl) 0;
  }
  
  .level-card,
  .benefit-card,
  .advisory-card,
  .value-item {
    padding: var(--space-md);
  }
  
  .education-methodology,
  .copy-trading-features,
  .mentorship-approach,
  .compliance-notes,
  .contact-information {
    padding: var(--space-lg);
  }
  
  .cta-btn {
    padding: var(--space-md) var(--space-lg);
  }
  
  .nav-controls {
    gap: 6px;
  }
  
  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

/* ===== DARK THEME STYLES (IMPROVED CONTRAST) ===== */


/* Dark theme backgrounds with better contrast */


.theme-dark .core-services,
.theme-dark .trust-signals {
  background: var(--dark-bg-primary);
}

.theme-dark .value-proposition {
  background: var(--dark-bg-secondary);
}

.theme-dark .risk-disclaimer {
  background: var(--dark-bg-secondary);
}

/* Dark theme cards with strong borders */
.theme-dark .level-card,
.theme-dark .benefit-card,
.theme-dark .advisory-card,
.theme-dark .value-item {
  background: var(--dark-bg-tertiary);
  border-color: var(--dark-border);
  color: var(--dark-text-primary);
  box-shadow: var(--shadow-dark-sm);
}

.theme-dark .level-card:hover,
.theme-dark .benefit-card:hover,
.theme-dark .advisory-card:hover,
.theme-dark .value-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-dark-md);
  background: var(--dark-bg-tertiary);
}

/* Dark theme secondary backgrounds */
.theme-dark .market-item,
.theme-dark .feature-item {
  background: var(--dark-bg-tertiary);
  border-left-color: var(--color-accent);
}

.theme-dark .market-item:hover,
.theme-dark .feature-item:hover {
  background: var(--dark-bg-secondary);
  border-left-color: var(--color-primary);
  box-shadow: var(--shadow-dark-md);
}

.theme-dark .education-methodology,
.theme-dark .copy-trading-features,
.theme-dark .mentorship-approach {
  background: var(--dark-bg-secondary);
  color: var(--dark-text-primary);
  border: 1px solid var(--dark-border);
}

/* Dark theme testimonials */
.theme-dark .testimonial {
  background: var(--dark-bg-tertiary);
  border: 1px solid var(--dark-border);
}

.theme-dark .testimonial:hover {
  background: var(--dark-bg-secondary);
  box-shadow: var(--shadow-dark-lg);
  border-color: var(--color-primary);
}

.theme-dark .compliance-notes {
  background: var(--dark-bg-tertiary);
  border-color: var(--dark-border);
}

/* Dark theme headings with high contrast */
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4 {
  color: var(--dark-text-primary);
}

/* Dark theme text with proper contrast */
.theme-dark .lead-statement,
.theme-dark .mission-statement,
.theme-dark .service-intro,
.theme-dark .value-intro {
  color: var(--dark-text-secondary);
}

.theme-dark p,
.theme-dark .level-features li,
.theme-dark .advisory-features li {
  color: var(--dark-text-secondary);
}

.theme-dark .level-card p,
.theme-dark .benefit-card p,
.theme-dark .advisory-card p,
.theme-dark .value-item p,
.theme-dark .market-item p,
.theme-dark .feature-item p {
  color: var(--dark-text-muted);
}

/* Dark theme blockquotes */
.theme-dark .testimonial blockquote {
  color: var(--dark-text-secondary);
}

.theme-dark .testimonial cite {
  color: var(--dark-text-muted);
}

/* Dark theme disclaimer */
.theme-dark .disclaimer-content p {
  background: var(--dark-bg-tertiary);
  color: var(--dark-text-secondary);
  border-left-color: var(--color-danger);
}

.theme-dark .disclaimer-final {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
  color: var(--dark-text-primary);
}

/* Dark theme risk disclosure box */
.theme-dark .risk-disclosure-box {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
}

.theme-dark .risk-disclosure-box p {
  color: var(--dark-text-secondary);
}

/* Dark theme borders */
.theme-dark .level-features li,
.theme-dark .advisory-features li {
  border-bottom-color: var(--dark-border);
}

/* Dark theme see more section */
.theme-dark .see-more-section {
  border-top-color: var(--dark-border);
}

.theme-dark .see-more-description {
  color: var(--dark-text-muted);
}

/* Dark theme CTA buttons (maintain visibility) */
.theme-dark .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark-text-primary);
  border-color: var(--dark-border);
}

.theme-dark .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
}

/* Dark theme footer */
.theme-dark .site-footer {
  background: var(--dark-bg-primary);
  border-top: 1px solid var(--dark-border);
}

.theme-dark .footer-bottom {
  border-top-color: var(--dark-border);
}
