/* 
 * Website Color Theme CSS - Centralized Color Management
 * Primary Color: #005499 (80% usage)
 * Accent Color: #FF6B6B - Modern Coral Red (10-20% usage)
 * Background: Light and Light Gray for elderly-friendly design
 */

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
  /* Primary Color Palette - #005499 */
  --primary-color: #005499;
  --primary-dark: #003d73;
  --primary-darker: #002d55;
  --primary-light: #1a6bb3;
  --primary-lighter: #3382cc;
  --primary-lightest: #f5f8ff;
  
  /* Accent Color Palette - Modern Coral Red (#FF6B6B) */
  --accent-color: #FF6B6B;
  --accent-dark: #E53935;
  --accent-darker: #C62828;
  --accent-light: #FF8A80;
  --accent-lighter: #FFB3B3;
  --accent-lightest: #FFE5E5;
  
  /* Background Colors - Light & Light Gray */
  --bg-color: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0f0f0;
  --bg-light: #fafafa;
  --bg-light-gray: #e9ecef;
  --bg-lighter-gray: #f5f5f5;
  --bg-section-light: #f8f9fa;
  
  /* Text Colors */
  --text-color: #333333;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-light: #cccccc;
  --text-on-primary: #ffffff;
  
  /* Divider Colors */
  --divider-color: rgba(0, 84, 153, 0.4);
  --dark-divider-color: rgba(255, 255, 255, 0.1);
  
  /* Error Color */
  --error-color: #C41E3A;
}

/* ============================================
   SMOOTH SECTION TRANSITIONS
   ============================================ */
section,
.section,
.about-us,
.our-services,
.why-choose-us,
.what-we-do,
.case-study,
.intro-video,
.how-it-work,
.our-pricing,
.our-faqs,
.our-testimonials,
.our-blog {
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: var(--bg-color);
}

/* Alternate section backgrounds for visual separation */
section:nth-child(even),
.section:nth-child(even) {
  background-color: var(--bg-section-light);
}

/* ============================================
   BUTTONS - Primary Color
   ============================================ */
.btn-default {
  background: var(--primary-color) !important;
  color: var(--text-on-primary) !important;
  transition: all 0.3s ease !important;
}

.btn-default:hover {
  background: var(--primary-dark) !important;
  color: var(--text-on-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 84, 153, 0.2);
}

.btn-default::after {
  background-color: var(--primary-dark) !important;
}

.btn-default.btn-highlighted {
  background: var(--accent-color) !important;
  color: var(--text-on-primary) !important;
}

.btn-default.btn-highlighted:hover {
  background: var(--accent-dark) !important;
  color: var(--text-on-primary) !important;
}

.btn-default.btn-highlighted::after {
  background-color: var(--accent-dark) !important;
}

/* ============================================
   HEADER
   ============================================ */
.main-header { 
  transition: all 0.3s ease;
}

.main-header .header-sticky.active {
  box-shadow: 0 2px 10px rgba(0, 84, 153, 0.1);
}

.main-menu ul li a {
  transition: color 0.3s ease;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color) !important;
}

.main-menu ul ul {
  background: var(--bg-color) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--divider-color) !important;
}

.main-menu ul ul li a {
  color: var(--text-color) !important;
}

.main-menu ul ul li a:hover {
  color: var(--primary-color) !important;
  background-color: var(--bg-secondary) !important;
}

/* ============================================
   HERO SECTION - Keep original image background
   ============================================ */
/* Hero section uses image background - don't override */
/* .hero background is handled by custom.css - no override needed */

/* Ensure text is readable on dark hero backgrounds - use white text */
.hero .section-title h3,
.hero .section-title h1,
.hero .section-title h2,
.hero .section-title p,
.hero p,
.hero .section-title-content p,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content .section-title h1,
.hero-content .section-title h2,
.hero-content .section-title h3,
.hero-content .section-title p {
  color: var(--text-on-primary) !important;
}

/* .hero .section-title h3 {
  border-color: var(--dark-divider-color) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-on-primary) !important;
} */

.hero .section-title h3::before {
  background: var(--accent-color) !important;
}

.hero .hero-body,
.hero .hero-experience-box h2,
.hero .hero-experience-box p,
.hero .satisfy-client-content h3,
.hero .satisfy-client-content p {
  color: var(--text-on-primary) !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
/* .section-title h3 {
  border-color: var(--divider-color) !important;
  color: var(--primary-color) !important;
  background-color: var(--bg-color) !important;
} */

.section-title h3::before {
  background: var(--primary-color) !important;
}

.section-title h1,
.section-title h2 {
  color: #000 !important;
}

/* ============================================
   BACKGROUND SECTIONS - Keep image backgrounds
   ============================================ */
/* bg-section may have image backgrounds - don't override */
/* Only apply light background if no image background is set */
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) {
  background-color: var(--primary-lightest);
}

/* Ensure text on bg-section with primary-lightest background is dark */
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h1,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h2,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h3,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h4,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h5,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) h6,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) p,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) .section-title h3,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) .section-title h1,
.bg-section:not([style*="background-image"]):not([style*="background: url"]):not([style*="background-image: url"]) .section-title h2 {
  color: var(--text-color);
}

/* Dark sections - use light backgrounds instead of dark blue */
.dark-section:not(.hero) {
  background: var(--bg-section-light) !important;
  color: var(--text-color) !important;
}

/* Ensure all text in dark sections is readable - now using light backgrounds */
/* BUT: Hero section with dark-section class should have white text */
.dark-section:not(.hero) .section-title h3,
.dark-section:not(.hero) .section-title h1,
.dark-section:not(.hero) .section-title h2,
.dark-section:not(.hero) .section-title p,
.dark-section:not(.hero) p,
.dark-section:not(.hero) .section-title-content p,
.dark-section:not(.hero) .section-content-btn p,
.dark-section:not(.hero) .readmore-btn,
.dark-section:not(.hero) a:not(.btn-default) {
  color: var(--text-color) !important;
}

/* Hero section with dark-section class - use white text */
.hero.dark-section .section-title h3,
.hero.dark-section .section-title h1,
.hero.dark-section .section-title h2,
.hero.dark-section .section-title p,
.hero.dark-section p,
.hero.dark-section .section-title-content p,
.hero.dark-section .section-content-btn p,
.hero.dark-section .readmore-btn,
.hero.dark-section a:not(.btn-default) {
  color: var(--text-on-primary) !important;
}

/* .dark-section:not(.hero) .section-title h3 {
  border-color: var(--divider-color) !important;
  background-color: var(--bg-color) !important;
  color: var(--primary-color) !important;
} */

/* Hero section with dark-section class - use white text for section title h3 */
/* .hero.dark-section .section-title h3 {
  border-color: var(--dark-divider-color) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-on-primary) !important;
} */

.dark-section:not(.hero) .readmore-btn:hover {
  color: var(--accent-color) !important;
}

.hero.dark-section .readmore-btn:hover {
  color: var(--accent-color) !important;
}

/* What We Do Section - Fix text visibility */
.what-we-do.dark-section {
  background: var(--bg-section-light) !important;
}

/* About Counter Box - Fix visibility with dark-section */
.about-counter-box.dark-section {
  /* Only adjust background via theme; layout comes from custom.css */
  background: var(--bg-section-light) !important;
}

.about-counter-box.dark-section .about-counter-title {
  border-bottom-color: var(--divider-color) !important;
}

.about-counter-box.dark-section .about-counter-title h2,
.about-counter-box.dark-section .about-counter-title h3 {
  color: var(--text-color) !important;
}

.about-counter-box.dark-section .about-counter-content p,
.about-counter-box.dark-section .about-counter-content ul li {
  color: var(--text-color) !important;
}

.about-counter-box.dark-section .readmore-btn {
  color: var(--primary-color) !important;
}

.about-counter-box.dark-section .readmore-btn::before {
  background-image: url('../images/arrow-primary.svg') !important;
}

.what-we-do .section-title h3,
.what-we-do .section-title h1,
.what-we-do .section-title h2,
.what-we-do .section-title p,
.what-we-do p,
.what-we-do .what-we-content h3,
.what-we-do .what-we-content p,
.what-we-do .what-we-counter-box h3,
.what-we-do .what-we-counter-box p {
  color: var(--text-color) !important;
}

.what-we-do .what-we-counter-box h2 {
  color: var(--primary-color) !important;
  background: var(--accent-color) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-stroke: 2px transparent !important;
}

.what-we-do .what-we-item {
  border-bottom-color: var(--divider-color) !important;
}

.what-we-do .what-we-item .icon-box {
  background-color: var(--accent-color) !important;
}

/* What We Item List - Fix item display */
.what-we-item {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

.what-we-item .icon-box {
  flex-shrink: 0 !important;
  width: 50px !important;
  height: 50px !important;
}

.what-we-content {
  flex: 1 !important;
  min-width: 0 !important;
}

.what-we-content h3 {
  color: var(--text-color) !important;
  margin-bottom: 10px !important;
}

.what-we-content p {
  color: var(--text-secondary) !important;
  margin: 0 !important;
}

/* ============================================
   REPLACE DARK BLUE BACKGROUNDS WITH LIGHT VERSIONS
   ============================================ */
/* Override dark blue backgrounds in sections - use light versions */
section[style*="background-color: var(--primary-color)"],
.section[style*="background-color: var(--primary-color)"],
section[style*="background: var(--primary-color)"],
.section[style*="background: var(--primary-color)"] {
  background: var(--bg-section-light) !important;
}

/* Override dark blue backgrounds in specific elements (but keep for buttons) */
.preloader,
.loading-container {
  background: var(--primary-color) !important; /* Keep for preloader */
}

/* Case study hover overlay - use light version */
.case-study-image::before {
  background: var(--primary-lightest) !important;
  opacity: 60% !important;
}

/* Service item background color via theme */
.service-item::before {
  background: var(--primary-lightest) !important;
}

/* Intro video overlay - use light version */
.intro-video-image::before {
  background: var(--primary-lightest) !important;
  opacity: 40% !important;
}

/* ============================================
   PAGE HEADER - Keep image background
   ============================================ */
/* Page header uses image background - don't override */
/* .page-header background is handled by custom.css - no override needed */

/* Ensure text is readable on dark page header backgrounds */
.page-header h1,
.page-header h2,
.page-header h3,
.page-header p,
.page-header .page-header-box h1,
.page-header .page-header-box ol li,
.page-header .page-header-box ol li a,
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: var(--text-on-primary) !important;
}

.page-header .breadcrumb-item.active {
  color: var(--text-on-primary) !important;
  opacity: 0.8;
}

.page-header .breadcrumb-item a:hover {
  color: var(--accent-color) !important;
}

/* ============================================
   INTRO VIDEO - Keep image background
   ============================================ */
/* Intro video uses image background - don't override */
/* .intro-video background is handled by custom.css - no override needed */

/* Ensure text is readable on dark intro video backgrounds */
.intro-video .section-title h3,
.intro-video .section-title h1,
.intro-video .section-title h2,
.intro-video .section-title p,
.intro-video p,
.intro-video .section-title-content p,
.intro-video .video-play-border-button a {
  color: var(--text-on-primary) !important;
}

.intro-video .section-title h3 {
  border-color: var(--dark-divider-color) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.intro-video .section-title h3::before {
  background: var(--accent-color) !important;
}

/* ============================================
   CARDS & BOXES - Light Backgrounds
   ============================================ */
/* .about-us-boxes,
.about-counter-box,
.service-box,
.service-item,
.why-choose-box,
.why-choose-item,
.what-we-item,
.case-study-box,
.testimonial-box,
.blog-box {
  background-color: var(--bg-color) !important;
  border: 1px solid var(--divider-color) !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-us-boxes:hover,
.service-box:hover,
.service-item:hover,
.why-choose-box:hover,
.why-choose-item:hover,
.what-we-item:hover,
.case-study-box:hover,
.testimonial-box:hover,
.blog-box:hover {
  box-shadow: 0 4px 16px rgba(0, 84, 153, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary-lighter) !important;
} */

/* Service content colors come from custom.css; no extra overrides here */

/* Why Choose Item Hover */
.why-choose-item:hover .icon-box::before {
  background-color: var(--accent-color) !important;
}

/* ============================================
   LINKS
   ============================================ */
a {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

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

.readmore-btn {
  color: var(--primary-color) !important;
}

.readmore-btn:hover {
  color: var(--primary-dark) !important;
}

/* ============================================
   ACCENT ELEMENTS
   ============================================ */
/* Error/Alert Colors */
.error-color,
.text-error {
  color: var(--accent-color) !important;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar-track {
  background-color: var(--bg-secondary) !important;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color) !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark) !important;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  color: var(--text-on-primary) !important;
  background-color: var(--primary-color) !important;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  background: var(--primary-color) !important;
}

.loading {
  border-color: transparent var(--accent-color) transparent var(--accent-color) !important;
}

/* ============================================
   SMOOTH TRANSITIONS BETWEEN SECTIONS
   ============================================ */
section + section,
.section + .section {
  padding-top: 80px;
  padding-bottom: 80px;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

/* Light background sections - alternate for visual separation */
section:nth-child(even),
.section:nth-child(even),
.about-us + .our-services,
.our-services + .why-choose-us,
.why-choose-us + .what-we-do {
  background-color: var(--bg-section-light);
  padding-top: 3%;
  padding-bottom: 3%;
}

/* Scrolling Ticker - Light Background */
.our-scrolling-ticker {
  background-color: var(--primary-lightest) !important;
  transition: background-color 0.3s ease;
}

/* Ensure text on scrolling ticker is dark */
.our-scrolling-ticker .scrolling-content span,
.our-scrolling-ticker h1,
.our-scrolling-ticker h2,
.our-scrolling-ticker h3,
.our-scrolling-ticker p {
  color: var(--text-color) !important;
}

/* Customer Rating Stars */
.customer-rating-star i {
  color: var(--accent-color) !important;
}

/* Satisfy Client Add More */
.satisfy-client-image.add-more {
  background-color: var(--accent-color) !important;
}

.satisfy-client-image.add-more p {
  color: var(--text-on-primary) !important;
}

/* ============================================
   ICONS & DECORATIVE ELEMENTS
   ============================================ */
.icon-service,
.icon-why-choose,
.icon-what-we {
  color: var(--primary-color) !important;
}

/* ============================================
   GENERAL RULE: Dark text on primary-lightest backgrounds
   ============================================ */
/* Any element with primary-lightest background should have dark text */
/* Rules for primary-lightest backgrounds are defined below */

[style*="primary-lightest"] h1,
[style*="primary-lightest"] h2,
[style*="primary-lightest"] h3,
[style*="primary-lightest"] h4,
[style*="primary-lightest"] h5,
[style*="primary-lightest"] h6,
[style*="primary-lightest"] p,
[style*="primary-lightest"] span,
[style*="primary-lightest"] a:not(.btn-default),
.bg-primary-lightest h1,
.bg-primary-lightest h2,
.bg-primary-lightest h3,
.bg-primary-lightest h4,
.bg-primary-lightest h5,
.bg-primary-lightest h6,
.bg-primary-lightest p,
.bg-primary-lightest span,
.bg-primary-lightest a:not(.btn-default) {
  color: var(--text-color) !important;
}

/* ============================================
   BADGES & LABELS
   ============================================ */
.badge,
.label {
  background-color: var(--primary-lightest) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-lighter) !important;
}

.badge-accent,
.label-accent {
  background-color: var(--accent-lightest) !important;
  color: var(--accent-color) !important;
  border: 1px solid var(--accent-lighter) !important;
}

/* ============================================
   FORMS
   ============================================ */
.form-control:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 84, 153, 0.15) !important;
}

.form-control {
  border-color: var(--divider-color) !important;
  background-color: var(--bg-color) !important;
}

/* ============================================
   TABLES
   ============================================ */
.table thead {
  background-color: var(--bg-section-light) !important;
  color: var(--primary-color) !important;
}

.table tbody tr:hover {
  background-color: var(--bg-secondary) !important;
}

/* ============================================
   FOOTER - Fix text visibility
   ============================================ */
/* Footer background is handled by custom.css - only set text colors here */
/* .main-footer background-color is set in custom.css and should not be overridden */

.main-footer *,
.footer * {
  color: var(--white-color);
}

.main-footer h3,
.footer h3,
.main-footer p,
.footer p,
.main-footer ul li,
.footer ul li,
.main-footer .about-footer-content p,
.main-footer .footer-links h3,
.main-footer .footer-links ul li,
.main-footer .footer-newsletter-box h3,
.main-footer .footer-copyright-text p {
  color: var(--white-color) !important;
}
.main-footer a,
.footer a {
  color: var(--white-color) !important;
  opacity: 0.9;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.main-footer a:hover,
.footer a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.main-footer .footer-links ul li a:hover,
.footer .footer-links ul li a:hover {
  color: var(--accent-color);
}

.main-footer .form-control,
.footer .form-control {
  color: var(--text-color);
  background-color: transparent !important;
  background: transparent !important;
}

.main-footer .form-control::placeholder,
.footer .form-control::placeholder {
  color: var(--text-color);
  opacity: 0.7;
}

.main-footer .form-label,
.footer .form-label,
.main-footer .footer-newsletter-form .form-group .form-label,
.footer .footer-newsletter-form .form-group .form-label {
  color: var(--text-color);
}

.main-footer .form-label a,
.footer .form-label a,
.main-footer .footer-newsletter-form .form-group .form-label a,
.footer .footer-newsletter-form .form-group .form-label a {
  color: var(--text-color);
  opacity: 1;
}

.main-footer .form-label a:hover,
.footer .form-label a:hover,
.main-footer .footer-newsletter-form .form-group .form-label a:hover,
.footer .footer-newsletter-form .form-group .form-label a:hover {
  color: var(--accent-color);
}

/* ============================================
   REGISTRATION PAGE
   ============================================ */
.registration-page {
  padding: 80px 0;
  background-color: var(--bg-section-light);
}

.registration-container {
  background: var(--bg-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 84, 153, 0.08);
  overflow: hidden;
}

.registration-sidebar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 60px 40px;
  color: var(--text-on-primary);
  min-height: 100%;
}

.registration-sidebar h2 {
  font-family: var(--accent-font, "Sora", sans-serif);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-on-primary);
}

.benefit-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 24px;
  color: var(--primary-lightest);
  margin-right: 15px;
  margin-top: 5px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-on-primary);
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.registration-form-section {
  padding: 60px 50px;
}

.form-header h2 {
  font-family: var(--accent-font, "Sora", sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.form-header p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.form-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-lightest);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.registration-page .form-control,
.registration-page .form-select,
.registration-page .rx-formInput {
  height: 50px;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.registration-page .form-control:focus,
.registration-page .form-select:focus,
.registration-page .rx-formInput:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 84, 153, 0.15);
  outline: none;
}

.registration-page .form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.ncpdp-search-box {
  background: var(--primary-lightest);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.ncpdp-search-box label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.btn-search {
  background: var(--accent-color);
  color: var(--text-on-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 50px;
}

.btn-search:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.help-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.help-link:hover {
  color: var(--primary-color);
}

.registration-page .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.registration-page .form-check-label {
  font-size: 14px;
  color: var(--text-color);
  cursor: pointer;
}

.registration-page .form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.registration-page .form-check-label a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn-register {
  background: var(--primary-color);
  color: var(--text-on-primary);
  border: none;
  padding: 16px 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.btn-register:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 84, 153, 0.3);
}

.btn-register:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.registration-page .text-danger {
  font-size: 13px;
  margin-top: 5px;
  display: block;
  color: var(--accent-color);
}

.business-type-select {
  background: var(--primary-lightest);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.business-type-select label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 991px) {
  .registration-sidebar {
    padding: 40px 30px;
  }
  
  .registration-form-section {
    padding: 40px 30px;
  }
  
  .form-header h2 {
    font-size: 28px;
  }
  
  .registration-sidebar h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .ncpdp-input-group {
    flex-direction: column;
  }
  
  .ncpdp-input-group input,
  .btn-search {
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  section + section,
  .section + .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

