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

/* ==========================================================================
   DESIGN TOKENS & VARIABLES (Modeling https://piainsure.com/)
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-navy-dark: #1e3674;     /* Deep corporate navy - main headers/trust */
  --color-blue-medium: #2e54b2;   /* Bright corporate blue - primary links/cards */
  --color-cyan: #34d1ed;          /* Vibrant cyan - highlights/borders */
  --color-crimson: #ea2e5d;       /* Energetic pink-red - main CTA/accent */
  --color-crimson-dark: #b5183f;  /* Dark crimson - CTA hovers */
  --color-charcoal: #22253d;      /* Very dark blue-gray - text/dark sections */
  
  /* Neutral Palette */
  --color-bg-light: #f4f5fa;      /* Cool light grey/blue section backgrounds */
  --color-bg-white: #ffffff;      /* Pure white */
  --color-text-dark: #22253d;     /* Main text color */
  --color-text-muted: #5a5f78;    /* Muted secondary body text */
  --color-border: #e1e4ed;        /* Soft divider lines */
  --color-shadow: rgba(30, 54, 116, 0.08); /* Transparent navy shadow */
  
  /* Typography */
  --font-headers: 'Kumbh Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-body: 'Mulish', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Layout Options */
  --site-width: 1320px;
  --header-height: 90px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 30px;
  --transition-speed: 0.3s;
  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

a {
  color: var(--color-blue-medium);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  color: var(--color-navy-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

/* ==========================================================================
   UTILITY CLASSES & LAYOUT
   ========================================================================== */
.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-bg-light {
  background-color: var(--color-bg-light);
}

.section-bg-dark {
  background-color: var(--color-charcoal);
  color: var(--color-bg-white);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: var(--color-bg-white);
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-crimson);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 18px;
  margin-top: 15px;
}

.section-bg-dark .section-subtitle {
  color: #a4a9c2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-headers);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--border-radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  white-space: nowrap;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-crimson);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  background-color: var(--color-crimson-dark);
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 46, 93, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}

.btn-secondary:hover {
  background-color: var(--color-navy-dark);
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 54, 180, 0.15);
}

.btn-white {
  background-color: var(--color-bg-white);
  color: var(--color-navy-dark);
}

.btn-white:hover {
  background-color: var(--color-cyan);
  color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 209, 237, 0.25);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-bg-white);
  border-color: var(--color-bg-white);
}

.btn-outline-white:hover {
  background-color: var(--color-bg-white);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  height: var(--header-height);
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 15px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  height: 75px;
  box-shadow: 0 4px 20px rgba(30, 54, 116, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-headers);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-navy-dark);
  gap: 8px;
}

.logo-icon {
  background-color: var(--color-cyan);
  color: var(--color-navy-dark);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--border-radius-sm);
  border-bottom: 3px solid var(--color-blue-medium);
}

.logo-text span {
  color: var(--color-crimson);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headers);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-charcoal);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-cyan);
  transition: width var(--transition-speed) ease;
}

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

.nav-link:hover {
  color: var(--color-blue-medium);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-navy-dark);
  border-radius: 3px;
  position: absolute;
  transition: all var(--transition-speed) ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--color-crimson);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--color-crimson);
}

/* Mobile sliding menu overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(34, 37, 61, 0.6);
  backdrop-filter: blur(5px);
  z-index: 998;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 54, 116, 0.95) 0%, rgba(34, 37, 61, 0.98) 100%), 
              url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--color-bg-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 209, 237, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 209, 237, 0.12);
  border: 1px solid rgba(52, 209, 237, 0.25);
  color: var(--color-cyan);
  padding: 8px 18px;
  border-radius: var(--border-radius-lg);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-tagline span {
  width: 8px;
  height: 8px;
  background-color: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-cyan);
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-bg-white);
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--color-cyan) 0%, #a2f2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Stats Card Overlay */
.hero-widget {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-crimson));
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.widget-title {
  font-size: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  color: #ffffff;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-cyan);
  min-width: 90px;
}

.stat-label {
  font-size: 15px;
  color: #d1d5db;
}

/* ==========================================================================
   INFO/PROFILE SECTION
   ========================================================================== */
.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.profile-visual {
  position: relative;
}

.profile-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 30px 60px var(--color-shadow);
  padding: 30px;
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.profile-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background-color: rgba(52, 209, 237, 0.1);
  border-radius: 50%;
}

.profile-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e6ebf8 0%, #cfdaf5 100%);
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-weight: 700;
  gap: 15px;
  position: relative;
}

.profile-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--color-blue-medium);
  opacity: 0.6;
}

.profile-meta {
  margin-top: 24px;
  text-align: center;
}

.profile-name {
  font-size: 24px;
  margin-bottom: 5px;
}

.profile-title {
  color: var(--color-crimson);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-decor-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background-color: var(--color-cyan);
  border-radius: var(--border-radius-md);
  z-index: 1;
  opacity: 0.3;
}

.quote-bubble {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-blue-medium);
  padding: 20px 24px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-dark);
  margin: 30px 0;
}

/* ==========================================================================
   SERVICES SECTION (GRID CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-shadow);
  padding: 40px;
  transition: all var(--transition-speed) var(--ease-elastic);
  position: relative;
  top: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--color-crimson);
  transition: width var(--transition-speed) ease;
  border-radius: 0 0 0 var(--border-radius-md);
}

.service-card:hover {
  top: -10px;
  box-shadow: 0 20px 50px rgba(30, 54, 116, 0.15);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 84, 178, 0.08);
  color: var(--color-blue-medium);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
  background-color: var(--color-crimson);
  color: var(--color-bg-white);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-card-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--color-border);
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.service-list-item::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 900;
}

/* ==========================================================================
   PHILANTHROPY SECTION
   ========================================================================== */
.phil-badge-group {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.phil-badge {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--border-radius-lg);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phil-badge span {
  width: 6px;
  height: 6px;
  background: var(--color-crimson);
  border-radius: 50%;
}

.phil-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.phil-image-box {
  background-color: var(--color-border);
  height: 220px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px var(--color-shadow);
}

.phil-image-box:nth-child(1) {
  background: linear-gradient(135deg, rgba(30, 54, 116, 0.8) 0%, rgba(34, 37, 61, 0.9) 100%);
  color: var(--color-bg-white);
}

.phil-image-box:nth-child(2) {
  background: linear-gradient(135deg, rgba(234, 46, 93, 0.8) 0%, rgba(181, 24, 63, 0.9) 100%);
  color: var(--color-bg-white);
}

.phil-image-box svg {
  opacity: 0.2;
  position: absolute;
  width: 150px;
  height: 150px;
}

.phil-image-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.phil-image-caption h4 {
  color: var(--color-bg-white) !important;
  font-size: 22px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.phil-image-caption p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   RECENT WINNERS SECTION
   ========================================================================== */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.winner-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.winner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-crimson) 0%, var(--color-blue-medium) 100%);
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.winner-trophy {
  font-size: 32px;
  margin-bottom: 15px;
}

.winner-name {
  font-size: 20px;
  color: var(--color-navy-dark);
  margin-bottom: 5px;
}

.winner-company {
  font-size: 14px;
  color: var(--color-crimson);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.winner-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 15px 0;
}

.winner-prize {
  font-size: 16px;
  color: var(--color-navy-dark);
  margin-bottom: 5px;
}

.winner-date {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .winners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   CAROUSEL / ROTATOR (INDUSTRIES)
   ========================================================================== */
.carousel-outer {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background-color: var(--color-bg-white);
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.slide-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.slide-content p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.slide-visual {
  height: 300px;
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-weight: 700;
  gap: 15px;
  border: 1px dashed var(--color-border);
}

.slide-visual svg {
  width: 64px;
  height: 64px;
  fill: var(--color-blue-medium);
}

/* Carousel navigation arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 20px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-speed) ease;
  color: var(--color-navy-dark);
  font-size: 20px;
}

.carousel-btn:hover {
  background-color: var(--color-cyan);
  border-color: var(--color-cyan);
  color: var(--color-charcoal);
}

.carousel-btn-prev {
  left: -70px;
}

.carousel-btn-next {
  right: -70px;
}

/* Carousel indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.carousel-dot.active {
  background-color: var(--color-crimson);
  width: 25px;
  border-radius: 5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-headers);
  color: rgba(30, 54, 116, 0.05);
}

.testimonial-text {
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  font-weight: 700;
  font-size: 18px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 2px;
}

.author-company {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-list {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-blue-medium);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-text p, 
.contact-info-text a {
  color: #a4a9c2;
  font-size: 15px;
}

.contact-form-wrapper {
  background-color: var(--color-bg-white);
  padding: 50px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
}

.contact-form-wrapper h3 {
  font-size: 26px;
  margin-bottom: 30px;
  text-align: center;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-headers);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid #ced4da;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  transition: all var(--transition-speed) ease;
}

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

.form-control:focus {
  border-color: var(--color-blue-medium);
  outline: none;
  box-shadow: 0 0 8px rgba(46, 84, 178, 0.15);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  display: none;
}

.form-message.success {
  background-color: rgba(18, 184, 120, 0.1);
  color: #12b878;
  border: 1px solid #12b878;
}

.form-message.error {
  background-color: rgba(219, 75, 104, 0.1);
  color: #db4b68;
  border: 1px solid #db4b68;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #161828;
  color: #a4a9c2;
  padding: 80px 0 30px;
  border-top: 4px solid var(--color-blue-medium);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget h4 {
  color: var(--color-bg-white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-cyan);
}

.footer-widget p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.social-icon:hover {
  background-color: var(--color-crimson);
  color: var(--color-bg-white);
  transform: translateY(-2px);
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #a4a9c2;
  font-size: 15px;
  transition: all var(--transition-speed) ease;
}

.footer-links-list a:hover {
  color: var(--color-cyan);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #8388a1;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
  .carousel-btn-prev { left: -20px; }
  .carousel-btn-next { right: -20px; }
}

@media (max-width: 1024px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 44px; }
  .profile-grid, 
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 25px;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--color-bg-white);
    font-size: 18px;
    width: 100%;
  }
  
  .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }
  
  .nav-cta .btn {
    width: 100%;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title { font-size: 32px; }
  
  .services-grid { 
    grid-template-columns: 1fr; 
  }
  
  .carousel-slide {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .slide-visual {
    height: 200px;
  }
  
  .carousel-btn {
    display: none; /* Hide arrows on mobile, use swiping/dots */
  }
  
  .testimonials-grid { 
    grid-template-columns: 1fr; 
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
  }
  .footer-bottom-links { justify-content: center; }
  .phil-gallery { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BINGO GAME CENTER & DASHBOARD
   ========================================================================== */
.bingo-dashboard {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 40px var(--color-shadow);
  padding: 40px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.bingo-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-crimson), var(--color-cyan), var(--color-blue-medium));
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.bingo-info h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.bingo-info p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* 3D Bingo Balls Layout */
.bingo-balls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 15px;
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--color-border);
}

.bingo-ball-wrapper {
  text-align: center;
}

.bingo-ball {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  position: relative;
  overflow: hidden;
  animation: ball-float 4s ease-in-out infinite;
  box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.4), 
              0 8px 16px rgba(30, 54, 116, 0.15);
}

.bingo-ball::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 10px;
  width: 45px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
  z-index: 3;
  pointer-events: none;
}

.bingo-ball::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
}

/* Ball Floating Animation Offsets */
.bingo-ball-wrapper:nth-child(2) .bingo-ball { animation-delay: 0.5s; }
.bingo-ball-wrapper:nth-child(3) .bingo-ball { animation-delay: 1s; }
.bingo-ball-wrapper:nth-child(4) .bingo-ball { animation-delay: 1.5s; }
.bingo-ball-wrapper:nth-child(5) .bingo-ball { animation-delay: 2s; }

/* 3D Shading Gradients for different letters */
.ball-b {
  background: radial-gradient(circle at 30% 30%, #ff8b9f 0%, var(--color-crimson) 60%, var(--color-crimson-dark) 100%);
}
.ball-i {
  background: radial-gradient(circle at 30% 30%, #5c7fde 0%, var(--color-navy-dark) 60%, #0d1a3c 100%);
}
.ball-n {
  background: radial-gradient(circle at 30% 30%, #8ef5ff 0%, var(--color-cyan) 60%, #16abc2 100%);
}
.ball-g {
  background: radial-gradient(circle at 30% 30%, #52577a 0%, var(--color-charcoal) 60%, #10111f 100%);
}
.ball-o {
  background: radial-gradient(circle at 30% 30%, #769af5 0%, var(--color-blue-medium) 60%, #193478 100%);
}

.ball-letter {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-navy-dark);
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.ball-number {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-charcoal);
  position: relative;
  z-index: 2;
}

.ball-date {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

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

/* Steps Infographic */
.play-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.play-step-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px var(--color-shadow);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-cyan);
  color: var(--color-charcoal);
  font-family: var(--font-headers);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-bottom: 2px solid var(--color-blue-medium);
}

.play-step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.play-step-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   BINGO GAME PLAY MODALS & TABS
   ========================================================================== */
.bingo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 37, 61, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 15px;
}

.bingo-modal-content {
  background: var(--color-bg-white);
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
  animation: modal-scale var(--transition-speed) var(--ease-elastic);
}

@keyframes modal-scale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.bingo-modal-header {
  background: var(--color-navy-dark);
  color: var(--color-bg-white);
  padding: 24px 30px;
  position: relative;
}

.bingo-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-bg-white);
  margin-bottom: 4px;
}

.bingo-modal-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: none;
  color: #a4a9c2;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-speed) ease;
}

.bingo-modal-close:hover {
  color: var(--color-crimson);
}

.bingo-modal-body {
  padding: 30px;
}

/* Modal Tabs Navigation */
.bingo-tabs {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 30px;
  gap: 20px;
}

.bingo-tab-btn {
  background: none;
  border: none;
  padding: 10px 0 15px;
  font-family: var(--font-headers);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.bingo-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-crimson);
  transition: width var(--transition-speed) ease;
}

.bingo-tab-btn.active {
  color: var(--color-crimson);
}

.bingo-tab-btn.active::after {
  width: 100%;
}

.bingo-tab-pane {
  display: none;
}

.bingo-tab-pane.active {
  display: block;
}

/* ==========================================================================
   INTERACTIVE BINGO BOARD
   ========================================================================== */
.bingo-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bingo-board-title {
  font-family: var(--font-headers);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-blue-medium);
  margin-bottom: 12px;
}

.bingo-grid-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 440px;
  background-color: var(--color-bg-white);
  box-shadow: 0 10px 25px var(--color-shadow);
  border: 4px solid var(--color-navy-dark);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.bingo-grid-table th {
  background-color: var(--color-navy-dark);
  color: var(--color-bg-white);
  font-family: var(--font-headers);
  font-size: 26px;
  font-weight: 900;
  padding: 8px 0;
  text-align: center;
  width: 20%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

.bingo-grid-table td {
  border: 1px solid var(--color-border);
  width: 20%;
  padding-bottom: 20%; /* Makes cells 1:1 aspect ratio square */
  height: 0;
  position: relative;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: var(--color-bg-white);
}

.bingo-cell-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: background-color var(--transition-speed) ease;
}

.bingo-grid-table td:hover .bingo-cell-inner {
  background-color: var(--color-bg-light);
}

/* Translucent organic ink stamp dauber mark */
.bingo-cell-inner.daubed::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(234, 46, 93, 0.7) 30%, rgba(234, 46, 93, 0.25) 70%);
  border: 2px dashed rgba(234, 46, 93, 0.85);
  border-radius: 53% 47% 45% 55% / 48% 52% 48% 52%; /* Slightly organic, non-perfect circle */
  animation: stamp-pop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.2);
  transform: rotate(5deg);
  z-index: 1;
}

.bingo-cell-inner.daubed {
  color: var(--color-navy-dark);
}

@keyframes stamp-pop {
  from { transform: scale(1.6) rotate(-15deg); opacity: 0; }
  to { transform: scale(1) rotate(5deg); opacity: 1; }
}

/* Golden Free Space cell */
.bingo-grid-table td.free-space {
  cursor: default;
}

.bingo-grid-table td.free-space .bingo-cell-inner {
  background: linear-gradient(135deg, #fffcf0 0%, #fffae0 100%);
  color: #b58d18;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bingo-grid-table td.free-space .bingo-cell-inner::before {
  content: '★';
  position: absolute;
  font-size: 26px;
  color: rgba(181, 141, 24, 0.08);
  z-index: 0;
}

/* Winning cell animation alert */
.bingo-grid-table td.winning-cell .bingo-cell-inner {
  animation: cell-win-glow 1.5s ease infinite alternate;
}

@keyframes cell-win-glow {
  0% { background-color: rgba(52, 209, 237, 0.15); box-shadow: inset 0 0 10px rgba(52, 209, 237, 0.3); }
  100% { background-color: rgba(234, 46, 93, 0.15); box-shadow: inset 0 0 10px rgba(234, 46, 93, 0.3); }
}

/* Claim WIN Overlay interface */
.claim-win-overlay {
  display: none;
  text-align: center;
  background-color: var(--color-bg-light);
  border: 2px solid var(--color-cyan);
  padding: 24px;
  border-radius: var(--border-radius-md);
  margin-top: 25px;
  animation: slide-up 0.4s var(--ease-elastic);
}

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

.claim-win-title {
  color: var(--color-crimson);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* ==========================================================================
   THE INSURANCE HOT SEAT ACCORDIONS
   ========================================================================== */
.hot-seat-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.hot-seat-item {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 5px 15px var(--color-shadow);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.hot-seat-item:hover {
  box-shadow: 0 10px 25px rgba(30, 54, 116, 0.12);
  border-color: var(--color-blue-medium);
}

.hot-seat-header {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: var(--color-bg-white);
  transition: background-color var(--transition-speed) ease;
}

.hot-seat-item.active .hot-seat-header {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.hot-seat-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hot-seat-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-crimson);
  letter-spacing: 1px;
}

.hot-seat-title {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--color-navy-dark);
}

.hot-seat-arrow {
  font-size: 18px;
  color: var(--color-navy-dark);
  transition: transform var(--transition-speed) ease;
}

.hot-seat-item.active .hot-seat-arrow {
  transform: rotate(180deg);
  color: var(--color-crimson);
}

.hot-seat-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.hot-seat-content-inner {
  padding: 30px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hot-seat-content-inner p {
  margin-bottom: 15px;
}

.hot-seat-content-inner p:last-child {
  margin-bottom: 0;
}

.hot-seat-content-inner ul {
  margin: 15px 0;
  padding-left: 20px;
}

.hot-seat-content-inner li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Category Filters Navigation */
.hot-seat-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  padding: 10px 24px;
  font-family: var(--font-headers);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-blue-medium);
  border-color: var(--color-blue-medium);
  color: var(--color-bg-white);
  box-shadow: 0 5px 15px rgba(46, 84, 178, 0.25);
}

@media (max-width: 768px) {
  .bingo-dashboard {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 30px 20px;
  }
  
  .play-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .bingo-modal {
    padding: 20px 10px;
  }
  
  .bingo-modal-body {
    padding: 20px;
  }
  
  .bingo-grid-table th {
    font-size: 20px;
  }
  
  .bingo-cell-inner {
    font-size: 16px;
  }
  
  .hot-seat-header {
    padding: 20px;
  }
  
  .hot-seat-title {
    font-size: 17px;
  }
  
  .hot-seat-content-inner {
    padding: 20px;
  }
}

/* ==========================================
   BLOG GRID & BLOG CARDS
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background-color: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 54, 116, 0.05);
  border: 1px solid rgba(225, 228, 237, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 54, 116, 0.1);
  border-color: rgba(46, 84, 178, 0.25);
}

.blog-card-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 54, 116, 0.2) 0%, rgba(22, 25, 45, 0.8) 100%);
  z-index: 1;
}

.blog-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background-color: var(--color-blue-medium);
  color: var(--color-bg-white);
  font-size: 11px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-badge.badge-video { background-color: var(--color-crimson); }
.blog-card-badge.badge-podcast { background-color: var(--color-cyan); color: var(--color-charcoal); }
.blog-card-badge.badge-bingo { background-color: #3f51b5; }

.blog-card-icon {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 36px;
  background: rgba(22, 25, 45, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card:hover .blog-card-icon {
  background: var(--color-crimson);
  color: var(--color-bg-white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(234, 46, 93, 0.4);
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--color-blue-medium);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  border-top: 1px solid rgba(225, 228, 237, 0.6);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-blue-medium);
}

.blog-author-info {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy-dark);
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue-medium);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-read-more {
  color: var(--color-crimson);
}

/* ==========================================
   VIDEO EMBED CONTAINER & PODCAST PLAYER
   ========================================== */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(225,228,237,0.5);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.custom-audio-player {
  background: var(--color-charcoal);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(52, 209, 237, 0.25);
  box-shadow: 0 10px 25px rgba(22, 25, 45, 0.3);
  margin-bottom: 25px;
}

.audio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.audio-track-title {
  color: var(--color-bg-white);
  font-weight: 700;
  font-size: 15px;
}

.audio-track-badge {
  background: var(--color-cyan);
  color: var(--color-charcoal);
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.audio-controls-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.audio-play-btn {
  background: var(--color-cyan);
  color: var(--color-charcoal);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  padding-left: 2px; /* Visual centering for play arrow */
}

.audio-play-btn:hover {
  background: var(--color-crimson);
  color: var(--color-bg-white);
  transform: scale(1.05);
}

.audio-play-btn.playing {
  padding-left: 0; /* Center pause button */
}

.audio-progress-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.audio-progress-bar {
  background: rgba(255, 255, 255, 0.15);
  height: 6px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.audio-progress-fill {
  background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-blue-medium) 100%);
  height: 100%;
  width: 0%;
  border-radius: 10px;
  position: relative;
}

.audio-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8388a1;
  font-family: monospace;
}

/* ==========================================
   BINGO DEDICATED PAGE LAYOUT & B2B PITCH
   ========================================== */
.bingo-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.b2b-pitch-card {
  background-color: var(--color-bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(30, 54, 116, 0.05);
  border: 1px solid rgba(225,228,237,0.7);
  margin-bottom: 25px;
}

.b2b-header {
  border-bottom: 2px solid rgba(52, 209, 237, 0.3);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.b2b-header h3 {
  color: var(--color-navy-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.b2b-pill-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b2b-pill-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.b2b-icon-box {
  background-color: rgba(46, 84, 178, 0.08);
  color: var(--color-blue-medium);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  font-weight: bold;
}

.b2b-pill-item:nth-child(even) .b2b-icon-box {
  background-color: rgba(234, 46, 93, 0.08);
  color: var(--color-crimson);
}

.b2b-pill-text h4 {
  font-size: 15px;
  color: var(--color-navy-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.b2b-pill-text p {
  font-size: 13.5px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.5;
}

.b2b-highlight-quote {
  background: linear-gradient(135deg, rgba(30, 54, 116, 0.03) 0%, rgba(52, 209, 237, 0.05) 100%);
  border-left: 4px solid var(--color-cyan);
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-top: 25px;
}

.b2b-highlight-quote p {
  font-style: italic;
  font-size: 14px;
  color: var(--color-navy-dark);
  margin-bottom: 10px;
  line-height: 1.6;
}

.b2b-highlight-quote cite {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-blue-medium);
  font-style: normal;
  display: block;
}

/* Inline Game Container */
.inline-game-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(225, 228, 237, 0.8);
  box-shadow: 0 10px 30px rgba(30, 54, 116, 0.05);
  padding: 30px;
}

/* ==========================================
   BLOG DETAIL MODAL LAYOUT
   ========================================== */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(34, 37, 61, 0.6);
  backdrop-filter: blur(8px);
}

.blog-modal-content {
  background-color: #ffffff;
  margin: 80px auto;
  border-radius: 12px;
  max-width: 750px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(30, 54, 116, 0.15);
  border: 1px solid rgba(225,228,237,0.7);
  overflow: hidden;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

.blog-modal-header-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--color-navy-dark);
}

.blog-modal-header-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30,54,116,0.1) 0%, rgba(22,25,45,0.7) 100%);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  background-color: rgba(22,25,45,0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.2s ease;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.blog-modal-close:hover {
  background-color: var(--color-crimson);
  color: #ffffff;
  border-color: #ffffff;
}

.blog-modal-meta-area {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  z-index: 2;
  color: #ffffff;
}

.blog-modal-badge {
  background-color: var(--color-cyan);
  color: var(--color-charcoal);
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.blog-modal-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.blog-modal-body {
  padding: 30px 40px 40px;
}

.blog-modal-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(225,228,237,0.7);
  padding-bottom: 15px;
}

.blog-modal-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-modal-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.blog-modal-text-content {
  font-size: 15.5px;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.blog-modal-text-content p {
  margin-bottom: 20px;
}

.blog-modal-text-content ul, 
.blog-modal-text-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-modal-text-content li {
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .bingo-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-modal-body {
    padding: 25px 20px 30px;
  }
  .blog-modal-title {
    font-size: 20px;
  }
  .blog-modal-meta-area {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* ==========================================
   ASSET & LOGO STYLING
   ========================================== */
.logo-img {
  height: 75px;
  width: 75px;
  object-fit: contain;
  transition: all var(--transition-speed) ease;
}

.header.scrolled .logo-img {
  height: 52px;
  width: 52px;
}

.profile-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  z-index: 1;
}

/* ==========================================
   FEATURED MEDIA HERO SECTION (HOT SEAT)
   ========================================== */
.featured-broadcast {
  background-color: var(--color-charcoal);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(52, 209, 237, 0.2);
  box-shadow: 0 15px 40px rgba(22, 25, 45, 0.25);
  margin-bottom: 50px;
}

.featured-broadcast-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.featured-player-side {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-info-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-bg-white);
}

.featured-info-side .section-tag {
  color: var(--color-cyan);
  margin-bottom: 12px;
}

.featured-broadcast-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-bg-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-broadcast-desc {
  color: #a4a9c2;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-subscribe-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 5px;
}

.featured-subscribe-label {
  font-size: 12px;
  font-weight: 700;
  color: #8388a1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscribe-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.subscribe-badge:hover {
  background: var(--color-cyan);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .featured-broadcast-grid {
    grid-template-columns: 1fr;
  }
  .featured-info-side {
    padding: 30px;
  }
}

/* ==========================================================================
   POLISHED DESIGN IMPROVEMENTS
   ========================================================================== */

/* Glassmorphism Styling Utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(30, 54, 116, 0.08);
}

.section-bg-dark .glass-panel {
  background: rgba(34, 37, 61, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Background Glow Blobs */
.glow-blob-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-blob {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.glow-blob-cyan {
  background-color: var(--color-cyan);
  top: 15%;
  left: -100px;
}

.glow-blob-crimson {
  background-color: var(--color-crimson);
  bottom: 20%;
  right: -100px;
}

/* Premium Card Overrides */
.service-card, .blog-card, .inline-game-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 15px 40px rgba(30, 54, 116, 0.06) !important;
  transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.service-card:hover, .blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(30, 54, 116, 0.14) !important;
  border-color: rgba(46, 84, 178, 0.2) !important;
}

/* Podcast Cover Art Styles */
.podcast-cover-art-container {
  width: 100%;
  height: 240px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.podcast-cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcast-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(34, 37, 61, 0.15) 0%, rgba(34, 37, 61, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.podcast-cover-overlay span {
  color: var(--color-bg-white);
  font-family: var(--font-headers);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Quarterly Sponsors Showcase Styling */
.sponsors-section {
  padding: 60px 0 90px;
  position: relative;
}

.sponsors-title-area {
  text-align: center;
  margin-bottom: 40px;
}

.sponsors-title-area span {
  font-size: 13px;
  color: var(--color-crimson);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.sponsor-card {
  height: 110px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 8px 20px var(--color-shadow);
}

.sponsor-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--color-blue-medium);
  box-shadow: 0 12px 30px rgba(46, 84, 178, 0.15);
}

.sponsor-logo-placeholder {
  font-family: var(--font-headers);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sponsor-logo-placeholder span {
  color: var(--color-crimson);
}


/* ==========================================
   HERO GAMIFICATION & SIGNUP MODAL STYLES
   ========================================== */

/* 1. Floating Background 3D Bingo Balls */
.hero {
  position: relative;
}

.hero-floating-balls-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-bg-ball {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: inset -10px -10px 25px rgba(0, 0, 0, 0.4),
              inset 5px 5px 15px rgba(255, 255, 255, 0.2),
              0 15px 35px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: floatBall infinite ease-in-out alternate;
}

/* 3D Glass Highlights on Floating Balls */
.floating-bg-ball::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.floating-bg-ball::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 20%;
  width: 25px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: rotate(-25deg);
  pointer-events: none;
}

/* Individual Ball Colors and Layout Positions */
.bg-ball-b {
  width: 90px;
  height: 90px;
  font-size: 32px;
  background: radial-gradient(circle at 35% 35%, var(--color-cyan) 0%, #178fa5 100%);
  top: 15%;
  left: 8%;
  opacity: 0.18;
  animation-duration: 12s;
}

.bg-ball-i {
  width: 120px;
  height: 120px;
  font-size: 42px;
  background: radial-gradient(circle at 35% 35%, var(--color-crimson) 0%, #991334 100%);
  top: 55%;
  left: 3%;
  opacity: 0.15;
  animation-duration: 16s;
  animation-delay: -3s;
}

.bg-ball-n {
  width: 80px;
  height: 80px;
  font-size: 28px;
  background: radial-gradient(circle at 35% 35%, #f1c40f 0%, #ab8a08 100%);
  top: 75%;
  left: 45%;
  opacity: 0.12;
  animation-duration: 10s;
  animation-delay: -1s;
}

.bg-ball-g {
  width: 100px;
  height: 100px;
  font-size: 36px;
  background: radial-gradient(circle at 35% 35%, var(--color-blue-medium) 0%, #152d6b 100%);
  top: 8%;
  right: 12%;
  opacity: 0.15;
  animation-duration: 14s;
  animation-delay: -5s;
}

.bg-ball-o {
  width: 110px;
  height: 110px;
  font-size: 40px;
  background: radial-gradient(circle at 35% 35%, #2ecc71 0%, #1b7e43 100%);
  top: 60%;
  right: 6%;
  opacity: 0.14;
  animation-duration: 18s;
  animation-delay: -2s;
}

@keyframes floatBall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-25px) rotate(15deg);
  }
}

/* 2. Interactive Mini Bingo Card Grid */
.mini-bingo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 180px;
  margin: 0 auto;
}

.mini-bingo-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-bingo-cell span {
  font-family: var(--font-headers);
  font-size: 13px;
  font-weight: 800;
  color: #a4a9c2;
  z-index: 2;
  transition: color 0.25s ease;
}

.mini-bingo-cell:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Daubed Cell State (Glossy Crimson Stamp) */
.mini-bingo-cell.daubed {
  background: radial-gradient(circle at 35% 35%, #ff4b76 0%, var(--color-crimson) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(234, 46, 93, 0.5), inset 0 2px 4px rgba(255,255,255,0.4);
  transform: scale(0.95);
}

.mini-bingo-cell.daubed span {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tactile Daub highlight stamp inside cell */
.mini-bingo-cell.daubed::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

/* Victory Confetti Container */
.victory-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.victory-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.victory-title {
  font-family: var(--font-headers);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4b76 0%, #ffc0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.victory-overlay.active .victory-title {
  transform: scale(1);
}

/* CSS Confetti Particles */
.confetti-particle {
  position: absolute;
  width: 6px;
  height: 12px;
  background: var(--color-cyan);
  opacity: 0.8;
  border-radius: 2px;
  animation: fallConfetti 3s linear infinite;
}

@keyframes fallConfetti {
  0% {
    transform: translateY(-50px) rotate(0deg);
  }
  100% {
    transform: translateY(280px) rotate(720deg);
    opacity: 0;
  }
}

/* 3. EMR Gauge Needle Sweep and Styling */
.emr-gauge-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gauge-fill {
  transition: stroke-dashoffset 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 4. Weekly Bingo Signup Modal Popup */
.signup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.signup-modal.active {
  display: flex;
  opacity: 1;
}

.signup-modal .modal-content {
  background: rgba(26, 32, 58, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(52, 209, 237, 0.1);
  overflow: hidden;
}

.signup-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Signup Modal Close Button */
.signup-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #a4a9c2;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.signup-modal .close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Inputs styling */
.signup-modal .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-cyan);
  outline: none;
  box-shadow: 0 0 10px rgba(52, 209, 237, 0.25);
}

/* Response messaging */
.signup-modal .form-message {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 15px;
  font-weight: 500;
}

.signup-modal .form-message.success {
  background-color: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.signup-modal .form-message.error {
  background-color: rgba(234, 46, 93, 0.15);
  border: 1px solid rgba(234, 46, 93, 0.3);
  color: #ea2e5d;
}

/* Ensure the hero stats widget has a dark glass background for maximum readability and contrast */
.hero-widget.glass-panel {
  background: rgba(22, 28, 54, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45) !important;
}

/* ==========================================================================
   GDPR COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: -200px; /* Start hidden */
  left: 0;
  right: 0;
  background: rgba(30, 37, 61, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner.show {
  bottom: 0;
}

.cookie-consent-banner .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-consent-banner p {
  color: #a4a9c2;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-consent-banner p a {
  color: var(--color-cyan);
  text-decoration: underline;
}

.cookie-consent-banner p a:hover {
  color: var(--color-bg-white);
}

.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-banner .btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .cookie-consent-banner .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-consent-banner .cookie-buttons {
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT PAGE RESPONSIVE GRIDS
   ========================================================================== */
.philanthropy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.service-grid-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .philanthropy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-grid-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }
  
  /* Reset direction for personal lines row so on mobile the text comes first */
  .service-grid-row.service-grid-reverse {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  .philanthropy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   B2B METRIC WIDGETS
   ========================================================================== */
.b2b-metric-widget {
  background-color: var(--color-navy-dark);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 15px 35px var(--color-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-bg-white);
  font-family: var(--font-headers);
}

.b2b-widget-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.b2b-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.b2b-metric-row:last-child {
  margin-bottom: 0;
}

.b2b-metric-label {
  font-size: 13px;
  color: #a4a9c2;
}

.b2b-metric-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-bg-white);
}

.b2b-metric-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b2b-badge-success {
  background-color: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.b2b-badge-warning {
  background-color: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
}

.b2b-badge-danger {
  background-color: rgba(234, 46, 93, 0.15);
  color: #ea2e5d;
}

.b2b-progress-container {
  margin-top: 5px;
  margin-bottom: 15px;
}

.b2b-progress-bar {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.b2b-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

.b2b-fill-cyan {
  background-color: var(--color-cyan);
}

.b2b-fill-crimson {
  background-color: var(--color-crimson);
}




