/* ==========================================================================
   Mumbai EPABX & Intercom - Corporate Blue & White Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Reset
   -------------------------------------------------------------------------- */
:root {
  --primary-dark: #0A192F;
  --primary-blue: #0F52BA;
  --accent-blue: #0066FF;
  --accent-cyan: #00D2FF;
  --accent-light-blue: #E6F0FF;
  --light-bg: #F8FAFC;
  --light-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-active: #B9D5FF;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 102, 255, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 102, 255, 0.14);
  --shadow-hover: 0 20px 45px rgba(0, 102, 255, 0.22);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: all 0.25s ease-in-out;
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --------------------------------------------------------------------------
   2. Typography & Section Header Utilities
   -------------------------------------------------------------------------- */
.font-heading {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--accent-light-blue);
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.08em;
  border-radius: 30px;
  margin-bottom: 12px;
}

/* Section Tag styling for dark headers */
.hero-section .section-tag,
.page-header-banner .section-tag {
  background-color: rgba(0, 102, 255, 0.2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(0, 210, 255, 0.4) !important;
}

.hero-section .section-tag i,
.page-header-banner .section-tag i {
  color: var(--accent-cyan) !important;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn-telecom-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0052CC 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-telecom-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.45);
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
}

.btn-telecom-outline {
  background: transparent;
  color: var(--accent-blue) !important;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 8px;
  border: 2px solid var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-telecom-outline:hover {
  background: var(--accent-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.btn-telecom-light {
  background: #ffffff;
  color: var(--primary-dark) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-telecom-light:hover {
  background: var(--light-bg);
  border-color: var(--accent-blue);
  color: var(--accent-blue) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Top Contact Bar & Main Navigation Header
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #CBD5E1;
  word-break: break-word;
}

.top-bar a:hover {
  color: var(--accent-cyan);
}

.emergency-pill {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Main Navbar */
.navbar-telecom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: var(--transition-normal);
}

.navbar-telecom.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar-brand-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-logo i {
  color: var(--accent-blue);
}

.navbar-telecom .nav-link {
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px !important;
  border-radius: 6px;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-telecom .nav-link:hover,
.navbar-telecom .nav-link.active {
  color: var(--accent-blue);
  background-color: var(--accent-light-blue);
}

.navbar-telecom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--accent-blue);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. Hero Banner Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #0F2A4A 60%, #103B6B 100%);
  color: #ffffff;
  padding: 100px 0 120px 0;
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 210, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-img-box {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-floating-card {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 22px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-floating-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Page Inner Header Banner (for About, Services, Projects, Contact) */
.page-header-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0F3B6E 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
}

.breadcrumb-telecom {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #94A3B8;
  margin-top: 10px;
}

.breadcrumb-telecom a {
  color: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   6. Statistics Counter Section
   -------------------------------------------------------------------------- */
.stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-active);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-light-blue);
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Service Cards & Feature Components
   -------------------------------------------------------------------------- */
.service-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 35px 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 102, 255, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--accent-light-blue);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Feature Check Item */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-check-list li i {
  color: #10B981;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   8. Portfolio & Project Filter Section
   -------------------------------------------------------------------------- */
.project-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  transition: var(--transition-fast);
  margin: 0 4px 10px 4px;
  cursor: pointer;
}

.project-filter-btn:hover,
.project-filter-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.project-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.project-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-content {
  padding: 24px;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.project-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   9. About, Team & Timeline Components
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-content {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.team-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-social {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, 0.9);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-social a:hover {
  background: var(--accent-blue);
}

/* --------------------------------------------------------------------------
   10. Contact Info & Forms
   -------------------------------------------------------------------------- */
.contact-info-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 24px 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  transition: var(--transition-fast);
  min-width: 0;
}

.contact-info-card>div {
  min-width: 0;
  flex: 1;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-info-card a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-active);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-light-blue);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-control,
.form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   11. Call-to-Action & Testimonial Sliders
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #0A192F 0%, #0F3B6E 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  pointer-events: none;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.star-rating {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
footer {
  background-color: var(--primary-dark);
  color: #94A3B8;
  padding: 70px 0 25px 0;
  font-size: 0.95rem;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand i {
  color: var(--accent-cyan);
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-cyan);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
}

/* --------------------------------------------------------------------------
   12b. Focus Area Map Section
   -------------------------------------------------------------------------- */
.focus-map-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
}

.focus-map-box img {
  transition: var(--transition-normal);
}

.focus-map-box:hover img {
  transform: scale(1.03);
}

.focus-region-card {
  background-color: var(--light-bg);
  transition: var(--transition-fast);
  height: 100%;
}

.focus-region-card:hover {
  background-color: #ffffff;
  border-color: var(--border-active) !important;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.focus-region-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0 80px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }

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

@media (max-width: 575.98px) {
  .top-bar {
    display: none;
  }

  .cta-banner {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   14. Secure Payment Booking Section
   ========================================================================== */
.booking-option-card {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--light-card);
  border: 1px solid var(--border-color) !important;
}

.booking-option-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-blue) !important;
  box-shadow: var(--shadow-md);
}

.booking-option-card.active {
  border-color: var(--accent-blue) !important;
  background-color: var(--accent-light-blue);
  box-shadow: var(--shadow-sm);
}

.booking-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--light-card);
  transition: all 0.2s;
  flex-shrink: 0;
}

.booking-option-card.active .booking-radio-circle {
  border-color: var(--accent-blue);
  background-color: var(--accent-blue);
}

.booking-option-card.active .booking-radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
}

.checkout-card {
  background: linear-gradient(135deg, #ffd000cc 0%, #fbff00 100%);
  border: 1px solid rgba(10, 25, 47, 0.08);
  box-shadow: var(--shadow-lg) !important;
  position: relative;
  overflow: hidden;
  color: var(--primary-dark) !important;
}

/* Accent highlight effect in yellow card background */
.checkout-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.checkout-card * {
  position: relative;
  z-index: 1;
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background-color: rgba(10, 25, 47, 0.06);
  border: 1px solid rgba(10, 25, 47, 0.1);
  color: var(--primary-dark) !important;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.checkout-divider {
  border-bottom: 1px solid rgba(10, 25, 47, 0.12) !important;
}

.checkout-muted {
  color: rgba(10, 25, 47, 0.65) !important;
}

.checkout-highlight {
  color: var(--primary-dark) !important;
}

.selected-service-summary {
  background-color: rgba(10, 25, 47, 0.05);
  border: 1px solid rgba(10, 25, 47, 0.08);
}

.checkout-card .input-group-text {
  background-color: rgba(10, 25, 47, 0.04);
  border: 1px solid rgba(10, 25, 47, 0.12);
  border-right: none;
  color: rgba(10, 25, 47, 0.6);
  font-size: 0.9rem;
}

.checkout-card .form-control {
  background-color: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.15);
  color: var(--primary-dark);
  font-size: 0.92rem;
  transition: all 0.25s ease-in-out;
  padding: 9px 12px;
}

.checkout-card .form-control::placeholder {
  color: rgba(10, 25, 47, 0.4);
}

.checkout-card .form-control:focus {
  background-color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
  color: var(--primary-dark);
}

.btn-checkout {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0F2544 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.18);
  transition: var(--transition-normal);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 25, 47, 0.32);
  background: linear-gradient(135deg, #0F2544 0%, #050E1A 100%);
}

.btn-checkout:disabled {
  background: rgba(10, 25, 47, 0.15) !important;
  color: rgba(10, 25, 47, 0.4) !important;
  box-shadow: none !important;
  transform: none !important;
}