/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  /* Header Height for Scroll Offset */
  --header-h: 72px;
  
  /* Brand Colors */
  --primary-red: #e94235;
  --primary-blue: #193574;
  --primary-blue-dark: #264c8b;
  --footer-bg: #000e26;
  
  /* Text Colors */
  --text-dark: #333;
  --text-light: #6c757d;
  --text-white: #fff;
  --text-muted: #999;
  --text-footer: rgba(255, 255, 255, 0.5);
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-white: #fff;
  --bg-secondary: #f9fbff;
  --bg-gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --bg-gradient-blue: linear-gradient(135deg, #193574 0%, #2a4a8f 100%);
  
  /* Border Colors */
  --border-light: #e9ecef;
  --border-footer: rgba(255, 255, 255, 0.2);
  
  /* Spacing */
  --section-padding: 4rem 0;
  --mobile-padding: 2rem 0;
  
  /* Margins */
  --margin-xs: 4px;
  --margin-sm: 8px;
  --margin-md: 12px;
  --margin-lg: 16px;
  --margin-xl: 20px;
  --margin-xxl: 24px;
  
  /* Paddings */
  --padding-xs: 4px;
  --padding-sm: 8px;
  --padding-md: 12px;
  --padding-lg: 16px;
  --padding-xl: 20px;
  --padding-xxl: 24px;
  --padding-card: 22px;
  
  /* Border Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-round: 50%;
  --radius-full: 999px;
  
  /* Border Widths */
  --border-xs: 1px;
  --border-sm: 2px;
  --border-md: 3px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 16px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-2xl: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* ==========================================================================
   SMOOTH SCROLL BEHAVIOR
   ========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h); /* offsets anchor jump */
}

/* ==========================================================================
   GENERAL STYLES
   ========================================================================== */

body {
  font-family: 'Mont', 'Mont Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

main {
  padding-top: 80px; /* Account for fixed header */
  min-height: calc(100vh - 200px); /* Ensure minimum height */
}

a {
  text-decoration: none;
  color: inherit;
}
/* ==========================================================================
   THEME BUTTON STYLES
   ========================================================================== */

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-white);
  height: 45px;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  background-color: var(--primary-red);
  padding: 0 var(--padding-xl);
  overflow: hidden;
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  gap: var(--margin-sm);
}

.theme-btn::before {
  background-color: var(--primary-blue-dark) !important;
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: -1;
  height: 103%;
  width: 102%;
  border-radius: var(--radius-md);
  content: "";
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
}

.theme-btn:hover {
  color: var(--text-white);
}

.theme-btn:hover::before {
  transform: scale(1, 1);
  transform-origin: top left;
}

.theme-btn:hover img {
  transform: translateY(-1px) translateX(8px);
}

.theme-btn img {
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   INFO MARK STYLES
   ========================================================================== */

.info-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 12px;
  width: 12px;
  border-radius: var(--radius-full);
  color: #fff;
  background: var(--primary-blue);
  font-size: 7px;
  font-weight: 700;
  border: none;
  cursor: help;
  transition: all 0.3s ease;
}

.info-mark i {
  font-size: 7px;
  line-height: 1;
}

/* Tooltip styling */
.tooltip {
  font-size: 13px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--primary-blue);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: var(--primary-blue);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: var(--primary-blue);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: var(--primary-blue);
}

.tooltip-inner {
  background-color: var(--primary-blue);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: var(--margin-sm) var(--margin-md);
  max-width: 250px;
  text-align: left;
}

.tooltip-inner h6 {
  color: var(--text-white);
  font-weight: 600;
  margin: 0 0 4px 0;
  font-size: 13px;
}

.tooltip-inner p {
  color: var(--text-white);
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

/* ==========================================================================
   CTA BUTTON STYLES
   ========================================================================== */

.cta {
  width: 100%;
  border: 0;
  background: var(--primary-red);
  color: #fff;
  padding: var(--padding-md) var(--padding-lg);
  border-radius: var(--radius-lg);
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 14px rgba(231, 76, 60, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #cf3e30;
}

.cta:active {
  transform: translateY(1px);
}

/* CTA Link - Make anchor tags behave like buttons */
.cta-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.navbar-white {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-white .main-links,
.navbar-white i {
  color: black !important;
}

.navbar-white.scrolled {
  background-color: var(--bg-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sticky-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
}

.navbar-brand img {
  max-width: 150px;
  height: auto;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Dropdown Styles */
.menu > .nav-item.submenu .dropdown-menu {
  top: 100%;
  margin: 10px;
  border-radius: 4px;
  left: -26px;
  min-width: max-content;
  border: none;
  background: var(--bg-white);
  padding: 0;
  box-shadow: none;
  border: none;
}

@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
    display: block;
    padding: 15px 0;
    box-shadow: 0 15px 25px 0 rgba(4, 73, 89, 0.1);
    border: 1px solid #ebebeb;
  }
}

.menu > .nav-item.submenu .dropdown-menu .nav-item {
  padding: 0 30px 0 20px;
  transition: all 0.3s linear;
  position: relative;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item + .nav-item {
  margin-top: 8px;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s linear;
  position: relative;
  display: inline-block;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primary-red) !important;
}

@media (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.mobile_dropdown_icon {
  font-size: 12px;
}

/* Mobile Header Styles */
@media (max-width: 991.98px) {
  /* Burger Button */
  .navbar-toggler {
    border: none;
    background-color: var(--primary-red);
    border-radius: 4px;
    padding: 6px 8px;
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover {
    background-color: var(--primary-blue-dark);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 66, 53, 0.25);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Mobile Dropdown Background */
  .navbar-collapse {
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    margin-top: 10px;
    padding: 1rem;
  }

  /* Mobile Menu Items */
  .navbar-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-red) !important;
  }

  /* Mobile Dropdown Menus */
  .dropdown-menu {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0.25rem 0;
    border-radius: 6px;
  }

  .dropdown-menu .nav-item {
    border-bottom: none;
    padding: 0;
  }

  .dropdown-menu .nav-link {
    padding: 0.25rem 1.5rem;
    font-size: 13px;
    color: var(--text-light) !important;
  }

  .dropdown-menu .nav-link:hover {
    background-color: transparent;
    color: var(--primary-red) !important;
  }

  /* Theme Button Mobile */
  .theme-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.footer-area {
  background: var(--footer-bg);
  color: var(--text-white);
  padding: var(--section-padding) 0 2rem;
}

.footer-area h2 {
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-area h5 {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-area hr {
  border-color: var(--text-white);
  border-width: 1px;
  margin: 1.5rem 0;
  opacity: 0.3;
}

/* CTA Section */
.footer-cta {
  padding: 2rem 0;
}

.footer-cta p {
  color: var(--text-footer);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Service List */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.service-list a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.service-list a:hover {
  color: var(--primary-red);
}

/* Office List */
.office-list {
  padding-left: 1rem;
}

.office-list h6 {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.office-list p {
  color: var(--text-footer);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Main Footer */
.main-footer {
  margin-top: 2rem;
}

.main-footer .logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.main-footer h5 {
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.main-footer p {
  color: var(--text-footer);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Footer Menu */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--primary-red);
}

/* Contact List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-list .icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-list a {
  color: var(--text-footer);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-list a:hover {
  color: var(--primary-red);
}

/* Social Media */
.social-list {
  display: flex;
  gap: 1rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-list a:hover {
  background: var(--primary-red);
  color: var(--text-white);
  transform: translateY(-2px);
}

.social-list i {
  font-size: 1.2rem;
}

/* Footer Bottom */

.footer-bottom p {
  color: var(--text-footer);
  font-size: 0.85rem;
  line-height: 18px;
  margin: 0 0 1.5rem 0;
  padding-top: 1rem;
}

.footer-link {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link span {
  color: var(--text-footer);
  font-size: 0.9rem;
}

.footer-link .separator {
  color: var(--text-footer);
  font-weight: 300;
}

.footer-link a {
  color: var(--text-footer);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--primary-red);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
  .footer-area {
    padding: 2rem 0 1rem;
  }
  
  .footer-cta {
    padding: 1rem 0;
  }
  
  .footer-cta h2 {
    font-size: 1.5rem;
  }
  
  .footer-cta p {
    font-size: 1rem;
  }
  
  /* Services and Offices Section */
  .footer-area h5 {
    text-align: center;
  }
  
  .service-list {
    text-align: left;
  }
  
  .office-list {
    text-align: center;
  }
  
  .office-list h6 {
    font-size: 1.1rem;
  }
  
  .office-list p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  /* Main Footer */
  .main-footer {
    text-align: center;
  }
  
  .main-footer .logo {
    margin: 0 auto 1rem;
  }
  
  .main-footer h5 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .contact-list {
    align-items: center;
  }
  
  .contact-list > div {
    justify-content: center;
  }
  
  .social-list {
    justify-content: center;
    margin-top: 1rem;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
  }
  
  .footer-link {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .footer-link .separator {
    display: none;
  }
}

/* Tablet Footer Styles */
@media (min-width: 769px) and (max-width: 991px) {
  .footer-area {
    padding: 3rem 0 2rem;
  }
  
  /* Services and Offices Section */
  .footer-area h5 {
    text-align: center;
  }
  
  .office-list {
    text-align: center;
  }
  
  .office-list p {
    text-align: left;
  }
  
  .main-footer {
    text-align: center;
  }
  
  .main-footer .logo {
    margin: 0 auto 1rem;
  }
  
  .main-footer h5 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .contact-list {
    align-items: center;
  }
  
  .contact-list > div {
    justify-content: center;
  }
  
  .social-list {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

/* Hero Gradient Background */
.hero-gradient-bg {
  background: linear-gradient(89.99deg, #ffffff 32%, rgba(140, 173, 231, 0.7) 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(140, 173, 231, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.banner-area-one {
  padding-top: 48px;
  padding-bottom: 48px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Hero without background gradient */
.banner-area-one:not(.hero-gradient-bg) {
  background: var(--bg-white);
  padding-top: 80px;
  padding-bottom: 60px;
}

.banner-area-one .container {
  position: relative;
  z-index: 1;
}

.banner-area-one .subtitle {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-area-one .h1 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.banner-area-one p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.powerdby {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.powerdby h6 {
  color: var(--text-muted);
  font-size: 11px;
  margin: 0;
}

.hero-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  height: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   SALES PAGE STYLES
   ========================================================================== */

/* Packages Section */
.packages-section {
  background: var(--bg-white);
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: 3rem;
}

.section-heading {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-red);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--text-muted);
  margin: 0 0.5rem;
}

/* Package Card Styles */
.feature-card-box {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: var(--border-xs) solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

/* Additional styles for flow pages */
.select-structure-page .feature-card-box {
  margin-bottom: 1rem;
}

.select-structure-page .pricing-area {
  padding: 2rem 0;
}

.select-structure-page .section-title-2 {
  text-align: center;
  margin-bottom: 3rem;
}

.select-structure-page .section-title-2 h2 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.select-structure-page .section-title-2 p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Flow page specific styles */
.select-structure-page ul.check-list li {
  flex-wrap: nowrap !important;
}

.select-structure-page .tooltip-inner {
  max-width: 300px !important;
  text-align: center;
}

.select-structure-page .service-item.disabled {
  opacity: 0.5;
}

.select-structure-page .service-item.disabled .icon i {
  color: #ccc;
}

.feature-card-box .title {
  padding: var(--padding-lg) var(--padding-card) 0 var(--padding-card);
  margin-bottom: var(--margin-sm);
}

.feature-card-box .title-content {
  display: flex;
  align-items: center;
  gap: var(--margin-md);
}

.feature-card-box .title-content .tier-label {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  flex: 1;
}

.feature-card-box .price-row {
  padding: 0 var(--padding-card);
  margin-bottom: var(--margin-sm);
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
}

.feature-card-box .price-legend {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

.feature-card-box .icon {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-round);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-card-box .icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-card-box .icon i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.feature-card-box .price-title {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  display: inline-block;
}

.feature-card-box .price-title span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
}

.feature-card-box .package-description {
  padding: 0 var(--padding-card);
  margin-bottom: var(--margin-sm);
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.feature-card-box .package-description p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0 var(--padding-card);
  display: grid;
  gap: var(--margin-sm);
  flex-shrink: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
  font-size: 15px;
  padding: 0;
  margin: 0;
}

.check-list .icon {
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: #38b08b;
  border: var(--border-xs) solid #38b08b;
  color: #ffffff;
}

.check-list .icon i {
  color: currentColor;
  font-size: 0.5rem;
  line-height: 1;
}

.check-list .service-item {
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
  font-size: 15px;
}

.check-list .service-item.disabled {
  color: #9aa4b2;
}

.check-list .service-item.disabled .icon {
  background: #9aa4b2;
  border: 1px solid #9aa4b2;
  color: #ffffff;
}

.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--margin-md) auto;
  width: 90%;
}

.footer {
  padding: var(--padding-md) var(--padding-card) var(--padding-xl);
  flex-shrink: 0;
}

/* Help CTA Styles */
.help-cta {
  padding: var(--padding-md);
}

.help-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: var(--margin-md);
}

.help-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: var(--margin-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works Content */
.how-it-works-content {
  text-align: left;
}

.how-it-works-content .section-heading {
  text-align: left;
  margin-bottom: var(--margin-md);
}

.how-it-works-content .section-subtitle {
  margin: 0;
}

.how-it-works-badge {
  display: inline-block;
}

.how-it-works-badge .badge-text {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* Lawyer Showcase */
.lawyer-showcase {
  margin-bottom: var(--margin-xl);
}

.lawyer-image-container {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  max-width: 500px;
  width: 100%;
}

.lawyer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lawyer-image-container:hover .lawyer-image {
  transform: scale(1.05);
}

.lawyer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--padding-xl);
  color: var(--text-white);
}

.lawyer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--margin-sm);
  font-weight: 600;
  font-size: 1rem;
}

.lawyer-badge i {
  font-size: 1.1rem;
  color: var(--primary-red);
}

.step-card {
  text-align: left;
  padding: var(--padding-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-red);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 var(--margin-md) 0;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.step-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--margin-sm);
  line-height: 1.3;
}

.step-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 var(--margin-sm) 0;
  flex-grow: 1;
}

.lawyer-focus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--margin-xs);
  background: var(--bg-light);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: var(--radius-full);
  border: var(--border-xs) solid var(--primary-blue);
  margin-top: var(--margin-sm);
}

.lawyer-focus i {
  font-size: 0.8rem;
  color: var(--primary-red);
}

.how-it-works-cta {
  padding: var(--padding-xxl);
  margin-top: var(--margin-xl);
}

.cta-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: var(--margin-sm);
}

.cta-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: var(--margin-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Authority Section Styles */
.authority-section {
  background: var(--bg-secondary);
}

/* Authority Content */
.authority-content {
  text-align: left;
}

.authority-content .section-heading {
  text-align: left;
  margin-bottom: var(--margin-md);
}

.authority-content .section-subtitle {
  text-align: left;
  margin: 0;
}

/* Lawyers Image */
.lawyers-image {
  text-align: center;
}

.banner-image {
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 480px;
}

/* Authority Highlights */
.authority-highlights {
  margin-bottom: var(--margin-xl);
}

.authority-highlight {
  padding: var(--padding-xl);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

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

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-red);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 0 var(--margin-lg) 0;
  transition: all 0.3s ease;
}

.authority-highlight:hover .highlight-icon {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.highlight-title {
  max-width: 320px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Attorney Profiles */
.profiles-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: var(--margin-lg);
}

.attorney-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-xs) solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.attorney-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.attorney-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attorney-card:hover .attorney-image {
  transform: scale(1.05);
}

.attorney-badge {
  position: absolute;
  top: var(--margin-md);
  right: var(--margin-md);
  background: var(--primary-red);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.attorney-info {
  padding: var(--padding-md);
  text-align: center;
}

.attorney-name {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--margin-xs);
}

.attorney-title {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--margin-md);
}

.attorney-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--margin-xs);
}

.attorney-rating i {
  color: #ffc107;
  font-size: 1rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: var(--margin-xs);
}

/* Authority CTA */
.authority-cta {
  margin-top: var(--margin-xl);
}

/* FAQ Section Styles */
.faq-section {
  background: var(--bg-white);
}

.faq-badge {
  display: inline-block;
}

.faq-badge .badge-text {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.accordion-item {
  border: none;
  border-bottom: var(--border-xs) solid var(--border-light);
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background-color: transparent;
  border: none;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  padding: var(--padding-lg);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:hover {
  background-color: rgba(25, 53, 116, 0.05);
  color: var(--primary-blue);
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary-blue);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23193574'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  width: 1.2rem;
  height: 1.2rem;
  background-size: 1.2rem;
}

.accordion-button:hover::after {
  transform: scale(1.1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23193574'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg) scale(1.1);
}

.accordion-body {
  background-color: transparent;
  padding: 0 var(--padding-lg) var(--padding-lg) var(--padding-lg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.accordion-collapse {
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loader Styles */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--padding-xl);
}

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

.loading-text {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

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

/* Blog Section Styles */
.blog-section {
  background: var(--bg-white);
}

.blog-badge {
  display: inline-block;
}

.blog-badge .badge-text {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.blog-widget {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card-link:hover .blog-widget {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-2px);
}

.blog-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-img img.default-image {
  object-fit: contain;
}

.blog-card-link:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--padding-lg) var(--padding-lg);
}

.category-pill {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 600;
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: var(--margin-md);
  text-transform: uppercase;
  border: var(--border-xs) solid var(--border-light);
}

.blog-content h4 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: var(--margin-md);
  transition: color 0.3s ease;
}

.blog-content h4:hover {
  color: var(--primary-red);
}

.blog-content h4 a {
  color: inherit;
}

.blog-content h4 a:hover {
  color: inherit;
}

.right-arrow-btn {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--margin-xs);
  transition: color 0.3s ease;
  margin-top: var(--margin-sm);
}

.right-arrow-btn:hover {
  color: var(--primary-red);
  opacity: 0.8;
}

.right-arrow-btn span {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.right-arrow-btn:hover span {
  transform: translateX(2px);
}

/* Mobile Package Styles */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card-box {
    padding: 1.5rem;
  }
  
  .feature-card-box .price-title {
    font-size: 2rem;
  }
  
  .help-cta {
    padding: var(--padding-xl);
  }
  
  .help-title {
    font-size: 1.5rem;
  }
  
  .help-description {
    font-size: 0.9rem;
  }
  
  /* How It Works Mobile */
  .how-it-works-content .section-heading {
    text-align: center;
  }
  
  .how-it-works-content .section-subtitle {
    text-align: center;
  }
  
  .lawyer-image-container {
    max-width: 100%;
  }
  
  .lawyer-image {
    height: 250px;
  }
  
  .lawyer-badge {
    font-size: 1rem;
  }
  
  .lawyer-badge i {
    font-size: 1.1rem;
  }
  
  .step-card {
    padding: var(--padding-lg);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .lawyer-focus {
    font-size: 0.75rem;
    padding: var(--padding-xs) var(--padding-sm);
  }
  
  .how-it-works-cta {
    padding: var(--padding-xl);
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  /* Authority Mobile */
  .authority-content {
    text-align: center;
    margin-bottom: var(--margin-lg);
  }
  
  .authority-content .section-heading {
    text-align: center;
  }
  
  .authority-content .section-subtitle {
    text-align: center;
  }
  
  .banner-image {
    height: 250px;
    width: auto;
    max-width: 100%;
  }
  
  .authority-highlight {
    padding: var(--padding-lg);
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin: 0 0 var(--margin-md) 0;
  }
  
  .highlight-title {
    font-size: 1.1rem;
  }
  
  .profiles-title {
    font-size: 1.5rem;
  }
  
  .attorney-image-container {
    height: 200px;
  }
  
  .attorney-name {
    font-size: 1.1rem;
  }
  
  .attorney-title {
    font-size: 0.85rem;
  }
  
  .authority-cta {
    padding: var(--padding-xl);
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
}

.hero-section {
  background: var(--bg-gradient-light);
  padding: var(--section-padding);
  margin-bottom: 3rem;
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section h2 {
  color: var(--text-light);
  font-weight: 400;
}

.content-section {
  padding: 2rem 0;
}

.features-section {
  background: var(--bg-light);
  padding: 3rem 0;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-item i {
  color: #28a745;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
  background: var(--bg-gradient-blue);
  color: var(--text-white);
  margin-top: 2rem;
}

.cta-section .btn {
  background: var(--bg-white);
  color: var(--primary-blue);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile Sales Page Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.1rem;
  }
  
  .features-section {
    padding: 2rem 0;
  }
  
  .cta-section {
    padding: 2rem 0;
  }
}



/* ==========================================================================
   CTA COMPONENT STYLES
   ========================================================================== */

/* CTA Size Variants */

.cta-large {
  height: 50px;
  font-size: 18px;
  padding: 0 2rem;
}

/* CTA Variant Styles */
.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-dark);
  color: var(--text-white);
}

.btn-hero {
  background-color: var(--primary-red);
  color: var(--text-white);
  font-weight: 600;
}

.btn-hero:hover {
  background-color: var(--primary-blue-dark);
  color: var(--text-white);
}

.btn-help {
  background-color: var(--primary-red);
  color: var(--text-white);
}

.btn-help:hover {
  background-color: var(--primary-blue-dark);
  color: var(--text-white);
}

.btn-section {
  background-color: var(--primary-red);
  color: var(--text-white);
}

.btn-section:hover {
  background-color: var(--primary-blue-dark);
  color: var(--text-white);
}

/* ==========================================================================
   SEARCH MODAL STYLES
   ========================================================================== */

/* Full Screen Modal Styles */
.modal-fullscreen {
  z-index: 9999990;
}

.modal-fullscreen .modal-content {
  height: 100vh;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #193574 0%, #2a4a8a 100%);
  color: white;
}

.modal-fullscreen .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

.modal-fullscreen .modal-body {
  padding: 3rem 2rem;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modal-fullscreen .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  font-size: 1.5rem;
  opacity: 0.8;
}

.modal-fullscreen .btn-close:hover {
  opacity: 1;
}

.modal-fullscreen .modal-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.modal-fullscreen .modal-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.modal-fullscreen .theme-btn {
  background: white;
  color: #193574;
  border: 2px solid white;
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0.5rem;
  line-height: 0.5em;
}

.modal-fullscreen .theme-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.modal-fullscreen .theme-btn.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.modal-fullscreen .theme-btn.btn-outline:hover {
  background: white;
  color: #193574;
}

/* Modal Search Styles */
.modal-search-container {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.modal-search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.modal-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.modal-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.modal-search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

.modal-search-results {
  margin-top: 2rem;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-x: hidden;
}

.modal-search-results::-webkit-scrollbar {
  width: 8px;
}

.modal-search-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.modal-search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.modal-search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.modal-search-category {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.modal-search-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  color: white;
  text-decoration: none;
}

.modal-search-item:last-child {
  border-bottom: none;
}

.modal-search-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transform: translateX(5px);
}

.modal-search-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.modal-search-item-category {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-search-loading {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-search-no-results {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-search-spinner {
  animation: spin 1s linear infinite;
}

/* Search Button Styles */
.search-btn {
  min-width: 45px;
  padding: 0 var(--padding-md);
  background-color: var(--primary-blue) !important;
  color: var(--text-white) !important;
  border: none;
  height: 45px; /* Match theme-btn height */
}

.search-btn:hover {
  background-color: var(--primary-blue-dark) !important;
  color: var(--text-white) !important;
}

.search-btn i {
  font-size: 16px;
  line-height: 1;
  color: var(--text-white) !important;
}

/* Mobile button styles */
@media (max-width: 991.98px) {
  .search-btn {
    height: 35px !important; /* Smaller for mobile */
    min-width: 35px !important;
    padding: 0 var(--padding-sm) !important;
  }
  
  .search-btn i {
    font-size: 14px !important;
  }
  
  .navbar-toggler {
    height: 35px !important; /* Match search button height */
    width: 45px !important; /* Wider than search button */
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important; /* Prevent shrinking */
  }
}

/* Mobile Search Modal Styles */
@media (max-width: 768px) {
  .modal-fullscreen .modal-header,
  .modal-fullscreen .modal-body {
    padding: 1.5rem;
  }

  .modal-fullscreen .modal-title {
    font-size: 2rem;
  }

  .modal-fullscreen .modal-description {
    font-size: 1rem;
  }

  .modal-search-input {
    font-size: 1rem;
    padding: 0.875rem 2.5rem 0.875rem 1.25rem;
  }

  .modal-search-results {
    max-height: 300px;
  }
}

/* ==========================================================================
   SERVICES SECTION STYLES
   ========================================================================== */

.services-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
}

.services-section .section-header {
  margin-bottom: 2rem;
}

.services-section .section-heading {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2.2rem;
}

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

/* Service Card Styles */
.service-card {
  height: 100%;
}

.service-card .card {
  border: var(--border-xs) solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  height: 100%;
  background: var(--bg-white);
}

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

.service-card .card-body {
  padding: var(--padding-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Service Icon and Title Row */
.service-header {
  display: flex;
  align-items: center;
  gap: var(--margin-md);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.service-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Service Description */
.service-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Service CTA */
.service-cta {
  margin-top: auto;
}

.service-cta .theme-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  height: 40px;
  padding: 0 var(--padding-lg);
}

/* Section CTA */
.section-cta {
  margin-top: var(--margin-xl);
}

.section-cta .cta-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--margin-sm);
}

.section-cta .cta-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: var(--margin-lg);
}

.section-cta .theme-btn {
  font-size: 1rem;
  height: 45px;
  padding: 0 var(--padding-xl);
}

/* Mobile Services Styles */
@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
  }
  
  .services-section .section-heading {
    font-size: 1.8rem;
  }
  
  .services-section .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card .card-body {
    padding: var(--padding-lg);
  }
  
  .service-header {
    gap: var(--margin-sm);
    margin-bottom: var(--margin-sm);
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .service-icon img {
    width: 40px;
    height: 40px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-description {
    font-size: 0.9rem;
    margin-bottom: var(--margin-md);
  }
  
  .service-cta .theme-btn {
    font-size: 0.85rem;
    height: 38px;
  }
  
  .section-cta .cta-title {
    font-size: 1.3rem;
  }
  
  .section-cta .cta-description {
    font-size: 0.95rem;
  }
}

/* Tablet Services Styles */
@media (min-width: 769px) and (max-width: 991px) {
  .services-section .section-heading {
    font-size: 2rem;
  }
  
  .service-card .card-body {
    padding: var(--padding-lg);
  }
  
  .service-header {
    gap: var(--margin-sm);
    margin-bottom: var(--margin-sm);
  }
  
  .service-icon {
    width: 44px;
    height: 44px;
  }
  
  .service-icon img {
    width: 44px;
    height: 44px;
  }
  
  .service-title {
    font-size: 19px;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-primary {
  color: var(--primary-blue) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
}

.border-radius-md {
  border-radius: var(--radius-md);
}