/* ============================================
   BENEFIT SUPPORT WEBSITE - PROFESSIONAL STYLES
   Improved Version - More White Space, Better Typography
   ============================================ */

/* ============================================
   CSS VARIABLES (Improved Color Palette)
   ============================================ */
:root {
  /* Primary Colors - Softer, More Professional */
  --primary-blue: #1a5490;
  --primary-blue-dark: #0f3d6e;
  --primary-blue-light: #2670b8;

  /* Accent Colors */
  --accent-light-blue: #e8f2fb;
  --accent-orange: #ff6b35;
  --accent-gray: #f5f7fa;

  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #fafbfc;
  --light-gray: #e5e9ed;
  --medium-gray: #6c757d;
  --dark-gray: #2d3748;
  --black: #000000;

  /* Text Colors */
  --text-primary: #1a202c;
  --text-secondary: #718096;
  --text-light: #ffffff;

  /* Spacing - MORE white space */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2.5rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography - Better hierarchy */
  --font-main:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-heading:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Borders - More rounded */
  --border-radius: 12px;
  --border-radius-lg: 16px;

  /* Shadows - Softer */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   TYPOGRAPHY - IMPROVED HIERARCHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 1.05rem;
}

ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   CONTAINER & LAYOUT - MORE BREATHING ROOM
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
}

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

.logo a {
  color: var(--text-primary);
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.logo .tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
  background-color: var(--accent-light-blue);
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   BUTTONS - MORE PROFESSIONAL
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26, 84, 144, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 84, 144, 0.35);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO SECTION - MORE DRAMATIC
   ============================================ */
.hero {
  background-image: url("images/team2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Blue overlay on hero image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  opacity: 0.88; /* ← HERO FADE CONTROL: Change this number! */
  z-index: 1;
}

/* Keep hero content on top */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.75rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  color: var(--white);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 3rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin: 0;
  color: var(--white);
}

/* ============================================
   CARDS & GRIDS - LESS BOXY, MORE SPACE
   ============================================ */
.cards-grid,
.services-grid,
.audience-grid,
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.card,
.service-card,
.audience-card,
.advantage-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
}

.card:hover,
.service-card:hover,
.audience-card:hover,
.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* PROFESSIONAL CIRCULAR ICONS - Use sparingly */
.card .icon,
.advantage-card .advantage-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-light)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 16px rgba(26, 84, 144, 0.25);
}

.card h3,
.service-card h3,
.audience-card h3,
.advantage-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.card p,
.service-card p,
.audience-card p,
.advantage-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* COLORED BACKGROUNDS FOR "WHY CHOOSE" CARDS */
.value-props .cards-grid .card:nth-child(1) {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 100%);
  border-color: #d0e7f0;
}

.value-props .cards-grid .card:nth-child(2) {
  background: linear-gradient(135deg, #e8f2fb 0%, #f0f6fc 100%);
  border-color: #cfe4f3;
}

.value-props .cards-grid .card:nth-child(3) {
  background: linear-gradient(135deg, #eef2f7 0%, #f5f8fa 100%);
  border-color: #d8e1e9;
}

/* COLORED BACKGROUNDS FOR SERVICE CARDS */
.services-preview .services-grid .service-card:nth-child(odd) {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.services-preview .services-grid .service-card:nth-child(even) {
  background: linear-gradient(135deg, #f5f8fa 0%, #fafbfc 100%);
}

/* Background images for specific "Who We Serve" cards - INTERACTIVE */
.audience-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
}

/* Light overlay by default - image is clear */
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  border-radius: var(--border-radius-lg);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Dark overlay on hover - image dims */
.audience-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(26, 84, 144, 0.85) 0%,
    rgba(15, 61, 110, 0.95) 100%
  );
}

/* Keep content on top of overlay */
.audience-card h3,
.audience-card p,
.audience-card a {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

/* Heading always visible, white text for contrast */
.audience-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Description hidden by default */
.audience-card p {
  color: var(--white);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
}

/* Description visible on hover */
.audience-card:hover p {
  opacity: 1;
  max-height: 200px;
  margin-bottom: var(--spacing-sm);
}

/* Link hidden by default */
.audience-card a {
  opacity: 0;
  color: var(--white);
  font-weight: 600;
  transform: translateY(10px);
}

/* Link visible on hover */
.audience-card:hover a {
  opacity: 1;
  transform: translateY(0);
}

/* For Employers card (1st card) */
.audience-grid .audience-card:nth-child(1) {
  background-image: url("images/owner1.webp");
}

/* For Members card (2nd card) */
.audience-grid .audience-card:nth-child(2) {
  background-image: url("images/family1.webp");
}

/* For Brokers card (3rd card) */
.audience-grid .audience-card:nth-child(3) {
  background-image: url("images/brokers1.webp");
}

/* For Providers card (4th card) */
.audience-grid .audience-card:nth-child(4) {
  background-image: url("images/provider1.webp");
}

/* ============================================
   VALUE PROPS SECTION
   ============================================ */
.value-props {
  background-color: var(--off-white);
}

.value-props h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   SERVICES SECTIONS
   ============================================ */
.services-preview {
  background: linear-gradient(135deg, #1a5490 0%, #2670b8 100%);
  color: var(--white);
}

.services-preview h2,
.services-preview .section-intro {
  text-align: center;
  color: var(--white);
}

.section-intro {
  font-size: 1.2rem;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
  opacity: 0.95;
}

.cta-center {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.who-we-serve {
  background-color: var(--off-white);
}

.who-we-serve h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.link-arrow {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-block;
  margin-top: var(--spacing-sm);
  transition: all var(--transition-fast);
}

.link-arrow:hover {
  transform: translateX(4px);
  color: var(--primary-blue-dark);
}

/* ============================================
   CHATBOT FEATURE SECTION
   ============================================ */
.chatbot-feature {
  background: linear-gradient(135deg, var(--accent-light-blue), var(--white));
  padding: var(--spacing-xl) 0;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.feature-text h2 {
  margin-bottom: var(--spacing-md);
}

.feature-text p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.chatbot-demo {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.chat-bubble {
  background: var(--light-gray);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-sm);
}

.chat-bubble.bot {
  background: var(--primary-blue);
  color: var(--white);
}

.chat-bubble p {
  margin: 0;
  color: inherit;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-image: url("images/team1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

/* Blue overlay on top of the image */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  opacity: 0.85; /* ← FADE CONTROL: Change this number! */
  z-index: 1;
}

/* Keep text on top of overlay */
.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 2.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--dark-gray);
  color: var(--light-gray);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.footer-section p {
  color: var(--light-gray);
  font-size: 0.95rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-tagline {
  font-style: italic;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: var(--spacing-xl) 0;
}

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

.content-main h2 {
  margin-bottom: var(--spacing-md);
}

.content-main p {
  margin-bottom: var(--spacing-md);
}

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

.stat-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-light)
  );
  color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  background: var(--off-white);
  padding: var(--spacing-xl) 0;
}

.philosophy-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
}

.philosophy-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.philosophy-card h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
  padding: var(--spacing-xl) 0;
}

.approach-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.approach-item {
  padding: var(--spacing-md);
}

.approach-item h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
  background: var(--off-white);
  padding: var(--spacing-xl) 0;
}

.why-choose-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.why-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-number {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.why-item h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-md);
  align-items: start;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-icon-large {
  font-size: 3rem;
}

.service-detail h3 {
  margin-top: 0;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
  background: var(--off-white);
  padding: var(--spacing-xl) 0;
}

.advantages-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   COMPARISON GRID
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.comparison-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.comparison-card h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.comparison-card ul {
  list-style: none;
  margin: 0;
}

.comparison-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.comparison-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* ============================================
   STOP-LOSS SECTION
   ============================================ */
.stop-loss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.stop-loss-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.stop-loss-card h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   CONSIDER SECTION
   ============================================ */
.consider-section {
  background: var(--accent-gray);
  padding: var(--spacing-xl) 0;
}

.consider-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.consider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.consider-item {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-blue);
}

.consider-item h4 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: var(--spacing-xl) 0;
}

.process-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-sm);
  box-shadow: 0 4px 12px rgba(26, 84, 144, 0.25);
}

.process-step h3 {
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f5f8fa 0%, #ffffff 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
}

.contact-info-side {
  position: relative;
}

/* No image - back to original */
.contact-info-side h2 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-blue);
  font-size: 2.5rem;
}

.contact-methods {
  margin: var(--spacing-lg) 0;
}

/* Contact method cards - text on left, symbol on right */
.contact-method {
  display: block;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  min-height: 140px;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Large background symbols on the right side */
.contact-method:nth-child(1)::before {
  content: "☎";
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 140px;
  color: var(--primary-blue);
  opacity: 0.7;
  z-index: 0;
}

.contact-method:nth-child(2)::before {
  content: "✉";
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 140px;
  color: var(--primary-blue);
  opacity: 0.7;
  z-index: 0;
}

.contact-method:nth-child(3)::before {
  content: "🏢";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 140px;
  color: var(--primary-blue);
  opacity: 0.7;
  z-index: 0;
}

/* Hide the small left icons */
.method-icon {
  display: none;
}

/* Content stays on left half */
.method-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
}

.method-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  color: var(--text-primary);
}

.method-content p {
  margin-bottom: 0.25rem;
}

.method-content a {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.method-note {
  font-size: 0.9rem;
  opacity: 0.75;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-side h2 {
  margin-bottom: var(--spacing-sm);
}

.contact-form {
  margin-top: var(--spacing-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-sm);
}

.form-message {
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-sm);
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   QUICK CONTACT
   ============================================ */
.quick-contact {
  background: linear-gradient(135deg, #1a5490 0%, #2670b8 100%);
  padding: var(--spacing-xl) 0;
}

.quick-contact h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

.quick-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

.quick-card h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

/* ============================================
   OFFICE HOURS
   ============================================ */
.office-hours {
  padding: var(--spacing-lg) 0;
  background: var(--white);
}

.office-hours h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto var(--spacing-md);
}

.hours-item {
  text-align: center;
  padding: var(--spacing-sm);
}

.hours-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.hours-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   CHATBOT TOGGLE BUTTON
   ============================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 84, 144, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  z-index: 999;
  transition: all var(--transition-normal);
}

.chatbot-toggle:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 84, 144, 0.5);
}

.chatbot-icon {
  font-size: 1.5rem;
}

/* ============================================
   CHATBOT WIDGET - FULL INTERFACE
   ============================================ */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 420px;
  max-width: calc(100vw - 40px);
  height: 600px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 998;
  overflow: hidden;
}

.chatbot-container.active {
  display: flex;
  animation: slideUp 0.3s ease;
}

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

.chatbot-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  color: var(--white);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  font-size: 2rem;
}

.chatbot-title h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.chatbot-title p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
  color: var(--white);
}

.chatbot-actions {
  display: flex;
  gap: 0.5rem;
}

.chatbot-action-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.chatbot-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-message {
  display: flex;
  animation: messageSlideIn 0.3s ease;
}

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

.chatbot-message.user {
  justify-content: flex-end;
}

.message-content {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  line-height: 1.6;
}

.chatbot-message.bot .message-content {
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chatbot-message.user .message-content {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 84, 144, 0.25);
}

.message-content p {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.message-content ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.message-content li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Typing Indicator */
.typing-indicator .message-content {
  display: flex;
  gap: 4px;
  padding: 1rem 1.25rem;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--medium-gray);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

.chatbot-input-container {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

#chatbot-input {
  flex: 1;
  padding: 0.875rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

#chatbot-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

#chatbot-send {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}

#chatbot-send:hover {
  background: var(--primary-blue-dark);
}

#chatbot-send:disabled {
  background: var(--medium-gray);
  cursor: not-allowed;
}

/* ============================================
   INTRO TEXT
   ============================================ */
.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
  }

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

  .hamburger {
    display: flex;
  }

  .cards-grid,
  .services-grid,
  .audience-grid,
  .advantages-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .stop-loss-grid,
  .consider-grid,
  .philosophy-content {
    grid-template-columns: 1fr;
  }

  .feature-content,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  section {
    padding: var(--spacing-lg) 0;
  }

  .chatbot-toggle {
    bottom: 20px;
    right: 20px;
    padding: 0.875rem 1.25rem;
  }

  .chatbot-text {
    display: none;
  }

  .chatbot-container {
    bottom: 80px;
    right: 10px;
    left: 10px;
    width: auto;
    height: 70vh;
    max-height: 550px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  h1 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .btn {
    width: 100%;
    padding: 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: var(--spacing-sm);
}
.mt-2 {
  margin-top: var(--spacing-md);
}
.mt-3 {
  margin-top: var(--spacing-lg);
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: var(--spacing-sm);
}
.mb-2 {
  margin-bottom: var(--spacing-md);
}
.mb-3 {
  margin-bottom: var(--spacing-lg);
}

.hidden {
  display: none;
}

/* ============================================
   TEXT PIZZAZZ - VISIBLE EMPHASIS
   ============================================ */

/* Highlight key phrases with VISIBLE background */
.highlight {
  background: linear-gradient(
    to right,
    rgba(26, 84, 144, 0.15) 0%,
    rgba(38, 112, 184, 0.15) 100%
  );
  padding: 0.15em 0.4em;
  border-radius: 6px;
  font-weight: 600;
}

/* Accent color for key words - MORE VISIBLE */
.accent-text {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.05em;
}

/* Stats/numbers emphasis - MUCH MORE VISIBLE */
.stat-emphasis {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.3em;
  background: linear-gradient(135deg, #e8f2fb 0%, #f0f6fc 100%);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  display: inline-block;
}

/* ============================================
   INTERACTIVE SERVICES PAGE STYLES
   ============================================ */

/* Services Interactive Section */
.services-interactive-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-interactive-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

/* Services Interactive Grid */
.services-interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Service Interactive Card */
.service-interactive-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-interactive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-interactive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-interactive-card:hover::before {
  transform: scaleX(1);
}

/* Service Card Icon */
.service-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-interactive-card h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-interactive-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Ask AI Button (Main) */
.btn-ask-ai {
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn-ask-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
  background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.btn-ask-ai:active {
  transform: translateY(0);
}

/* Ask AI Button (Small) */
.btn-ask-ai-small {
  background: transparent;
  color: #1976d2;
  border: 2px solid #1976d2;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-ask-ai-small:hover {
  background: #1976d2;
  color: white;
  transform: translateX(5px);
}

/* Additional Services Section */
.additional-services {
  padding: 4rem 0;
  background: white;
}

.additional-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.additional-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid #1976d2;
}

.additional-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-left-color: #2196f3;
}

.additional-item h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 700;
}

.additional-item p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Why Our Services Section */
.why-our-services {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: white;
}

.why-our-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

.why-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.why-service-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-service-number {
  width: 60px;
  height: 60px;
  background: white;
  color: #1976d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.why-service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.why-service-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .services-interactive-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-interactive-card {
    padding: 2rem;
  }

  .services-interactive-section h2 {
    font-size: 2rem;
  }

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

  .why-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   SELF-FUNDING PAGE - VISUAL UPGRADES
   ============================================ */

/* How It Works - Visual Flow Diagram */
.how-it-works-visual {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-it-works-visual h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

.visual-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-column {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flow-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
}

.flow-title.bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.flow-title.good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.flow-visual-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.flow-visual-step:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flow-visual-step.final {
  margin-bottom: 0;
}

.flow-visual-step.final.bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  border: 2px solid #ef5350;
}

.flow-visual-step.final.good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #66bb6a;
}

.step-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.step-detail {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.flow-arrow-down {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin: 0.5rem 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.flow-result {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.flow-result.bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  border: 2px solid #ef5350;
}

.flow-result.good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid #66bb6a;
}

.flow-result strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.flow-result p {
  margin: 0;
  color: var(--medium-gray);
}

/* Cost Comparison - Visual Upgrade */
.cost-comparison-visual {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: white;
}

.cost-comparison-visual h2 {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cost-comparison-visual .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.cost-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.cost-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cost-card-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.cost-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.cost-card-total {
  font-size: 2.5rem;
  font-weight: 800;
  padding: 1rem;
  border-radius: 12px;
}

.cost-card-total.bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.cost-card-total.good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.cost-breakdown {
  padding: 2rem;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: var(--dark-gray);
}

.cost-item:last-child {
  margin-bottom: 0;
}

.cost-item.highlight-bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  border-left: 4px solid #ef5350;
  font-weight: 600;
}

.cost-item.highlight-good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-left: 4px solid #66bb6a;
  font-weight: 600;
}

.cost-label {
  font-size: 0.95rem;
}

.cost-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.cost-note {
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
  background: #f8f9fa;
}

.cost-note.bad {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.cost-note.good {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.savings-banner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.savings-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.savings-percent {
  font-size: 1.5rem;
  color: #1976d2;
  margin-bottom: 1rem;
}

.savings-banner p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin: 0;
}

/* Advantages Section - Enhanced */
.advantages-section {
  padding: 5rem 0;
  background: white;
}

.advantages-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.advantage-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 700;
}

.advantage-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
}

/* Who Should Consider - Enhanced */
.who-should-consider {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.who-should-consider h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

.consider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

.consider-column {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consider-column.good-candidates {
  border-top: 4px solid #66bb6a;
}

.consider-column h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.consider-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consider-column li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--medium-gray);
  line-height: 1.7;
  border-bottom: 1px solid #e9ecef;
}

.consider-column li:last-child {
  border-bottom: none;
}

.consider-column li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 0.8rem;
}

/* Terminology Section - Enhanced */
.terminology-section {
  padding: 5rem 0;
  background: white;
}

.terminology-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.term-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.term-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.term-card h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.term-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
}

.terms-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

.terms-cta p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .visual-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cost-cards-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .flow-visual-step {
    flex-direction: column;
    text-align: center;
  }

  .step-icon {
    font-size: 2.5rem;
  }
}

/* ============================================
   ABOUT PAGE - COMPLETE REDESIGN
   ============================================ */

/* Professional Stats Bar - Insurance Industry Style */
.professional-stats-bar {
  padding: 3rem 0;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.stats-bar-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--medium-gray);
  font-weight: 400;
  text-transform: none;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #dee2e6;
}

/* Our Story Section */
.our-story-section {
  padding: 5rem 0;
  background: white;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-text h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.story-intro {
  font-size: 1.3rem;
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.story-visual {
  position: sticky;
  top: 100px;
}

.story-image-placeholder {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid #90caf9;
}

.story-image-placeholder p {
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.story-highlight-box {
  background: linear-gradient(135deg, #e8f4f8, #d6e9f0);
  color: #2c3e50;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-blue);
}

.story-highlight-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50 !important;
}

.story-highlight-box p {
  color: #34495e !important;
  line-height: 1.7;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  color: white;
}

.timeline-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.timeline-section .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Timeline center line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  margin-bottom: 2rem;
}

.timeline-item.left {
  left: 0;
  padding-right: 4rem;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  padding-left: 4rem;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  top: 2rem;
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  text-align: center;
  line-height: 1.2;
}

.timeline-item.left .timeline-marker {
  right: -30px;
}

.timeline-item.right .timeline-marker {
  left: -30px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-left-width: 8px;
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: white;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.team-intro p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.team-member {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.team-photo-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.placeholder-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0;
}

.team-member h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.95rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--medium-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.team-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

.team-cta p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Why Different Section */
.why-different-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-different-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.different-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.different-card.highlight {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 3px solid #66bb6a;
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.3);
}

.different-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef5350, #e53935);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.different-badge.good {
  background: linear-gradient(135deg, #66bb6a, #43a047);
}

.different-card h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-top: 1rem;
  font-weight: 700;
}

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

.comparison-list li {
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  position: relative;
  line-height: 1.6;
}

.comparison-list.bad li {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.comparison-list.bad li::before {
  content: "❌";
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
}

.comparison-list.good li {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  font-weight: 600;
}

.comparison-list.good li::before {
  content: "✅";
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-visual {
    position: static;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 100px;
    padding-right: 2rem;
    text-align: left !important;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item .timeline-marker {
    left: 0 !important;
    right: auto !important;
  }

  .different-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-bar-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
  }

  .stat-value {
    font-size: 2.5rem;
  }

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

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

  .timeline-item {
    padding-left: 80px;
  }
}

/* ============================================
   CHATBOT IMPROVEMENTS - BETTER FORMATTING & MOBILE
   ============================================ */

/* Better Message Formatting */
.chatbot-message .message-content p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

.chatbot-message .message-content p:last-child {
  margin-bottom: 0;
}

.chatbot-message .message-content strong {
  font-weight: 700;
  color: #1a1a1a;
}

.chatbot-message.bot .message-content strong {
  color: #1565c0;
}

/* Bullet Lists in Chatbot */
.chatbot-list {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.chatbot-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.25rem;
}

.chatbot-list li:last-child {
  margin-bottom: 0;
}

/* Better spacing for bot messages */
.chatbot-message.bot .message-content {
  background: #f5f7fa;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* User messages - keep simple */
.chatbot-message.user .message-content {
  background: var(--primary-blue);
  color: white;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

/* Expand Button */
.chatbot-expand-btn {
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-expand-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* EXPANDED MODE (Desktop) */
.chatbot-container.expanded {
  width: 600px !important;
  height: 700px !important;
  max-height: 85vh;
}

.chatbot-container.expanded .chatbot-messages {
  max-height: calc(700px - 140px);
}

/* FULLSCREEN MODE (Mobile) */
.chatbot-container.fullscreen {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  border-radius: 0 !important;
  z-index: 10000 !important;
}

.chatbot-container.fullscreen .chatbot-header {
  padding: 1.25rem 1rem;
  border-radius: 0;
}

.chatbot-container.fullscreen .chatbot-messages {
  max-height: calc(100vh - 160px);
  padding: 1.25rem;
}

.chatbot-container.fullscreen .chatbot-input-container {
  padding: 1.25rem;
  border-radius: 0;
}

.chatbot-container.fullscreen .chatbot-message .message-content {
  font-size: 1rem;
}

/* ============================================
   MOBILE FIXES - CONSOLIDATED
   All mobile responsive fixes in one place
   ============================================ */

/* ============================================
   MOBILE: 768px and below
   ============================================ */
@media (max-width: 768px) {
  /* ===========================================
     BASE TYPOGRAPHY - Not too big
     =========================================== */
  body {
    font-size: 16px !important;
  }

  h1 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  p,
  li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* ===========================================
     LAYOUT - Proper padding
     =========================================== */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  section {
    padding: 2rem 0 !important;
  }

  /* Page headers shouldn't be huge */
  .page-header {
    padding: 1.5rem 0 !important;
  }

  .page-header h1 {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem !important;
  }

  .page-header p {
    font-size: 0.9rem !important;
  }

  /* ===========================================
     NAVIGATION - Compact
     =========================================== */
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .logo h1 {
    font-size: 1.2rem !important;
  }

  .logo .tagline {
    font-size: 0.7rem !important;
  }

  /* ===========================================
     CARD GRIDS - 2 columns, not chunky
     =========================================== */
  .cards-grid,
  .services-grid,
  .audience-grid,
  .quick-cards,
  .team-grid,
  .different-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* ===========================================
     CARDS - Compact sizing
     =========================================== */
  .card,
  .service-card,
  .audience-card,
  .quick-card,
  .team-member,
  .different-card {
    padding: 1rem !important;
    border-radius: 8px !important;
  }

  .card h3,
  .service-card h3,
  .audience-card h3,
  .quick-card h3,
  .team-member h3,
  .different-card h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .card p,
  .service-card p,
  .audience-card p,
  .quick-card p,
  .team-member p,
  .different-card p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
  }

  /* Card icons - smaller */
  .card .icon,
  .service-card .icon,
  .service-card-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* ===========================================
     INTERACTIVE SERVICE CARDS
     =========================================== */
  .services-interactive-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .service-interactive-card {
    padding: 1rem !important;
  }

  .service-interactive-card h3 {
    font-size: 1.1rem !important;
  }

  .service-interactive-card p {
    font-size: 0.85rem !important;
  }

  .btn-ask-ai {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  /* ===========================================
     STATS - Not huge numbers
     =========================================== */
  .stat-number-large,
  .hero-stat-number,
  .stat-value {
    font-size: 2rem !important;
  }

  .stat-label {
    font-size: 0.8rem !important;
  }

  /* Professional stats bar */
  .professional-stats-bar {
    padding: 1rem 0 !important;
  }

  .stats-bar-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .stat-item {
    text-align: center !important;
  }

  .stat-divider {
    display: none !important;
  }

  /* ===========================================
     HERO SECTION
     =========================================== */
  .hero {
    padding: 2rem 0 !important;
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
  }

  .hero-subtitle,
  .hero p {
    font-size: 0.95rem !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  /* ===========================================
     BUTTONS - Reasonable size
     =========================================== */
  .btn {
    font-size: 0.9rem !important;
    padding: 0.7rem 1.25rem !important;
    display: inline-block !important;
    width: auto !important;
  }

  .btn-large {
    padding: 0.8rem 1.5rem !important;
  }

  /* ===========================================
     ABOUT PAGE - Our Story Section
     =========================================== */
  .story-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .story-text h2 {
    font-size: 1.5rem !important;
  }

  .story-text p {
    font-size: 0.9rem !important;
  }

  .story-visual {
    order: 2 !important;
  }

  .story-image-placeholder {
    height: 150px !important;
    margin-bottom: 1rem !important;
  }

  .story-highlight-box {
    padding: 1rem !important;
  }

  .story-highlight-box h3 {
    font-size: 1.1rem !important;
  }

  .story-highlight-box p {
    font-size: 0.85rem !important;
  }

  /* ===========================================
     ABOUT PAGE - Timeline
     =========================================== */
  .timeline {
    padding-left: 1.5rem !important;
  }

  .timeline-item {
    margin-bottom: 1.5rem !important;
    padding-left: 1rem !important;
  }

  .timeline-marker {
    font-size: 0.8rem !important;
    padding: 0.25rem 0.5rem !important;
  }

  .timeline-content h3 {
    font-size: 1rem !important;
  }

  .timeline-content p {
    font-size: 0.85rem !important;
  }

  /* ===========================================
     ABOUT PAGE - Values
     =========================================== */
  .values-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .value-card {
    padding: 1rem !important;
  }

  .value-card h3 {
    font-size: 1rem !important;
  }

  .value-card p {
    font-size: 0.85rem !important;
  }

  /* ===========================================
     ABOUT PAGE - Team
     =========================================== */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .team-member {
    padding: 1rem !important;
  }

  .team-photo-placeholder {
    height: 80px !important;
    margin-bottom: 0.75rem !important;
  }

  .team-role {
    font-size: 0.75rem !important;
  }

  /* ===========================================
     ABOUT PAGE - Comparison Cards
     =========================================== */
  .different-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .different-card {
    padding: 1rem !important;
  }

  .different-card h3 {
    font-size: 1.1rem !important;
  }

  .comparison-list li {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  .different-badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
  }

  /* ===========================================
     SELF-FUNDING PAGE - Specific sections
     =========================================== */
  .how-it-works-grid,
  .advantages-grid,
  .cost-comparison-grid,
  .considerations-grid,
  .terms-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .step-card,
  .advantage-card,
  .comparison-card,
  .consideration-card,
  .term-card {
    padding: 1rem !important;
  }

  .step-card h3,
  .advantage-card h3,
  .comparison-card h3,
  .consideration-card h3,
  .term-card h3 {
    font-size: 1rem !important;
  }

  .step-card p,
  .advantage-card p,
  .comparison-card p,
  .consideration-card p,
  .term-card p {
    font-size: 0.85rem !important;
  }

  .step-number {
    font-size: 1.5rem !important;
    width: 40px !important;
    height: 40px !important;
  }

  /* ===========================================
     CONTACT PAGE - FIXED MOBILE LAYOUT
     =========================================== */
  .contact-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .contact-info-side h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .contact-methods {
    margin: 1rem 0 !important;
  }

  /* Contact method cards - FIXED for mobile */
  .contact-method {
    padding: 1rem !important;
    min-height: auto !important;
    margin-bottom: 1rem !important;
  }

  /* Hide the huge background icons on mobile */
  .contact-method::before {
    display: none !important;
  }

  /* Show the small left icons on mobile instead */
  .method-icon {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    background: var(--primary-blue, #1a5490) !important;
    color: white !important;
    border-radius: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  /* Content can use full width on mobile */
  .method-content {
    max-width: 100% !important;
  }

  .method-content h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.25rem !important;
  }

  .method-content p {
    font-size: 0.9rem !important;
    margin-bottom: 0.25rem !important;
  }

  .method-content a {
    font-size: 1rem !important;
  }

  .method-note {
    font-size: 0.8rem !important;
  }

  /* Contact form side */
  .contact-form-side h2 {
    font-size: 1.5rem !important;
  }

  .contact-form {
    margin-top: 1rem !important;
  }

  .form-group {
    margin-bottom: 1rem !important;
  }

  .form-group label {
    font-size: 0.9rem !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important; /* Prevents iOS zoom */
    padding: 0.75rem !important;
  }

  /* ===========================================
     CTA SECTION
     =========================================== */
  .cta-section {
    padding: 2rem 0 !important;
    text-align: center !important;
  }

  .cta-section h2 {
    font-size: 1.4rem !important;
  }

  .cta-section p {
    font-size: 0.9rem !important;
  }

  /* ===========================================
     FOOTER
     =========================================== */
  .footer {
    padding: 2rem 0 1rem !important;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.85rem !important;
  }

  /* ===========================================
     CHATBOT - Better mobile experience
     =========================================== */
  .chatbot-container.active {
    width: 100vw !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 70vh !important;
    max-height: 70vh !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .chatbot-messages {
    max-height: calc(70vh - 130px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .chatbot-expand-btn {
    display: none !important;
  }

  .chatbot-message .message-content {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .chatbot-input-container input {
    font-size: 16px !important; /* Prevents iOS zoom */
  }

  .chatbot-container.fullscreen {
    width: 100vw !important;
    height: 70vh !important;
    max-height: 70vh !important;
    top: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .chatbot-toggle {
    width: 56px !important;
    height: 56px !important;
    bottom: 16px !important;
    right: 16px !important;
  }

  /* ===========================================
     ACCORDION STYLES
     =========================================== */
  .accordion-header {
    cursor: pointer !important;
    user-select: none !important;
    padding: 0.75rem 0 !important;
    border-bottom: 2px solid #e5e9ed !important;
    margin-bottom: 0 !important;
    transition: background-color 0.2s ease !important;
  }

  .accordion-header:hover {
    background-color: rgba(26, 84, 144, 0.03) !important;
  }

  .accordion-header:active {
    background-color: rgba(26, 84, 144, 0.06) !important;
  }

  .accordion-header.active {
    border-bottom-color: #1a5490 !important;
  }

  .accordion-icon {
    font-size: 0.9rem !important;
    color: #1a5490 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .accordion-content {
    padding-top: 1rem !important;
    animation: accordionFadeIn 0.3s ease !important;
  }

  @keyframes accordionFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Section subtitle inside accordions */
  .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }

  /* Intro text */
  .intro-text p,
  .team-intro p {
    font-size: 0.9rem !important;
  }
}

/* ============================================
   VERY SMALL SCREENS: 480px and below
   ============================================ */
@media (max-width: 480px) {
  body {
    font-size: 15px !important;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.3rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  /* Single column on very small screens */
  .cards-grid,
  .services-grid,
  .audience-grid,
  .quick-cards,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-number-large,
  .hero-stat-number,
  .stat-value {
    font-size: 1.75rem !important;
  }

  .hero h1 {
    font-size: 1.4rem !important;
  }

  .page-header h1 {
    font-size: 1.4rem !important;
  }

  /* Contact method icons even smaller */
  .method-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }
}

/* ============================================
   DESKTOP: Accordion styles hidden
   ============================================ */
@media (min-width: 769px) {
  .accordion-icon {
    display: none !important;
  }

  .accordion-header {
    cursor: default !important;
  }

  .accordion-content {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }
}
