/* ==========================================================================
   RGB LOGIX - Component Styles (White, Slate & Amazon Orange)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Top Contact Bar & Header Navigation
   -------------------------------------------------------------------------- */
.top-bar {
  background: #131921;
  color: #E2E8F0;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts, .top-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2E8F0;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.top-link svg {
  width: 15px;
  height: 15px;
  fill: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  max-width: 1440px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  flex-wrap: nowrap;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.logo:hover {
  color: #FF9900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.nav-item {
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.2rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #FF9900;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.nav-arrow {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
  fill: currentColor;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  z-index: 105;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 153, 0, 0.08);
  color: #FF9900;
  transform: translateX(4px);
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  fill: #FF9900;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  color: #0F172A;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-subtle);
  z-index: 200;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: transparent;
  color: #475569;
  cursor: pointer;
  padding: 0.5rem;
}

.drawer-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-links .nav-link {
  font-size: 1.1rem;
  color: #1E293B;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #131921;
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFA41C 0%, #FF8800 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
  color: #131921;
}

.btn-secondary {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #F8FAFC;
  border-color: #FF9900;
  color: #FF9900;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1E293B;
  border: 1.5px solid #CBD5E1;
}

.btn-outline:hover {
  background: rgba(255, 153, 0, 0.08);
  border-color: #FF9900;
  color: #FF9900;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  padding: 5.5rem 0 4.5rem 0;
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-content .badge-pill {
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.25rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Services & Cards Grid
   -------------------------------------------------------------------------- */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #FFFFFF;
  color: #475569;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #94A3B8;
}

.tab-btn.active {
  background: #131921;
  color: #FFFFFF;
  border-color: #131921;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-hover);
}

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

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.35);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #E68A00;
  transition: fill var(--transition-fast);
}

.service-card:hover .service-icon-wrap svg {
  fill: #131921;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  fill: #10B981;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #D97706;
  margin-top: auto;
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.service-link:hover {
  color: #B45309;
}

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

/* --------------------------------------------------------------------------
   Stats / Track Record
   -------------------------------------------------------------------------- */
.stats-banner {
  background: #131921;
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow-x: auto !important;
  width: 100% !important;
}

.stats-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  text-align: center !important;
  width: 100% !important;
}

.stat-item {
  flex: 1 1 0px !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: #FF9900;
  white-space: nowrap !important;
}

.stat-label {
  font-size: clamp(0.75rem, 1.05vw, 0.98rem);
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap !important;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Why Choose Us - Card-based Layout (Matching Core Services Hover Pattern)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-hover);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.35);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: #E68A00;
  transition: fill var(--transition-fast);
}

.why-card:hover .why-icon svg {
  fill: #131921;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   3-Step Workflow Section (Matching Core Services Hover Pattern)
   -------------------------------------------------------------------------- */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-hover);
}

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

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #E68A00;
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.25);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.step-card:hover .step-num-badge,
.process-step-card:hover .step-num-badge {
  transform: scale(1.08);
  background: var(--gradient-primary);
  border-color: transparent;
  color: #131921;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.35);
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   Process & Blog Card Items - Matching Hover Accent
   -------------------------------------------------------------------------- */
.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.process-step-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.process-step-card:hover::before {
  opacity: 1;
}

.blog-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.blog-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.blog-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
  border-color: #CBD5E1;
}

.blog-card-item:hover::before {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.75rem;
  background: transparent;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: #FF9900;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
  padding: 0 1.75rem 1.4rem 1.75rem;
}

.faq-answer p {
  font-size: 1rem;
  color: #475569;
}

/* --------------------------------------------------------------------------
   Interactive Consultation Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  color: #64748B;
  cursor: pointer;
  padding: 0.4rem;
}

.modal-close:hover {
  color: #0F172A;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.step-pill {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94A3B8;
}

.step-pill.active {
  color: #D97706;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1E293B;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  color: #0F172A;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: #FF9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.radio-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-card-label {
  display: block;
  padding: 0.85rem 1rem;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-card input:checked + .radio-card-label {
  background: rgba(255, 153, 0, 0.1);
  border-color: #FF9900;
  color: #D97706;
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.2);
}

/* --------------------------------------------------------------------------
   Sticky WhatsApp & Action Widgets (Right Stack over Ask Ray)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 106px;
  right: 24px;
  left: auto;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99998;
  transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  left: auto;
  background: #131921;
  color: #FFFFFF;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Footer (Amazon Dark Navy with Orange Accents)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #131921;
  color: #CBD5E1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: #FFFFFF;
}

.footer-brand p {
  margin: 1.25rem 0 1.5rem 0;
  font-size: 0.95rem;
  color: #94A3B8;
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: #FF9900;
  border-color: #FF9900;
  color: #131921;
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #FF9900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   Calculator Verified Watermark & Advisory Seal
   -------------------------------------------------------------------------- */
.calculator-watermark-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}

.calc-watermark-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.calc-watermark-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.calc-watermark-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.calc-watermark-sub {
  display: block;
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.calc-watermark-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.calc-watermark-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed #CBD5E1;
  font-size: 0.78rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calc-copy-pill {
  background: #E2E8F0;
  color: #334155;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
}

/* --------------------------------------------------------------------------
   Anti-Theft Copyright Toast
   -------------------------------------------------------------------------- */
.protection-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0F172A;
  color: #FFFFFF;
  border: 1px solid #334155;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 153, 0, 0.25);
  border-radius: 9999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.protection-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.protection-toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF9900;
  box-shadow: 0 0 8px #FF9900;
}

/* --------------------------------------------------------------------------
   Calculator Watermark & Brand Verification Badge
   -------------------------------------------------------------------------- */
.calculator-watermark-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  gap: 0.75rem;
}

.calculator-watermark-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF9900, #F59E0B, #FF9900);
}

.calc-watermark-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.calc-watermark-logo {
  height: 32px;
  width: 32px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 153, 0, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.calc-watermark-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.calc-watermark-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.calc-watermark-sub {
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-watermark-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.45);
  color: #FFB340;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-watermark-seal svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.calc-watermark-footer {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #64748B;
  width: 100%;
}

.calc-watermark-footer a {
  color: #FF9900;
  text-decoration: none;
  font-weight: 600;
}

.calc-watermark-footer a:hover {
  text-decoration: underline;
}

/* Print Stylesheet Protection */
@media print {
  .calculator-watermark-badge {
    background: #0F172A !important;
    color: #FFFFFF !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border: 2px solid #FF9900 !important;
    margin: 1rem 0 !important;
  }
  .calc-watermark-title, .calc-watermark-sub {
    color: #FFFFFF !important;
  }
}

/* --------------------------------------------------------------------------
   Anti-Theft Text Selection Deterrence
   Prevents text highlighting on body content while preserving full selection
   inside all form inputs, modals, and calculator fields.
   -------------------------------------------------------------------------- */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select, [contenteditable="true"], .modal, .modal-content, pre, code {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* --------------------------------------------------------------------------
   Custom Right-Click Link Menu (Clean White Theme, Zero-Inspect Shield)
   -------------------------------------------------------------------------- */
.custom-link-menu {
  position: fixed;
  z-index: 9999999;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.15);
  padding: 0.35rem;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.15s ease, transform 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.custom-link-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.custom-menu-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  background: transparent;
  border: none;
  color: #0F172A;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all 0.12s ease;
}

.custom-menu-item svg {
  width: 15px;
  height: 15px;
  fill: #475569;
  flex-shrink: 0;
  transition: fill 0.12s ease;
}

.custom-menu-item:hover {
  background: #F8FAFC;
  color: #FF9900;
}

.custom-menu-item:hover svg {
  fill: #FF9900;
}




