/* ==========================================================================
   CSAT BY SWAMINATHAN - COMPONENT STYLES
   ========================================================================== */

/* Top Marquee Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #050e1a 0%, #0b1f3a 50%, #050e1a 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.announcement-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 6px #ef4444;
  animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.announcement-text {
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.01em;
  font-size: 0.86rem;
}

.announcement-text strong {
  color: var(--color-gold-400);
  font-weight: 800;
}

.announcement-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Premium Phone Number Pill */
.top-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-phone-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071322;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.top-phone-num {
  color: #fef3c7;
  font-weight: 800;
}

.top-phone-pill:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: #f59e0b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  color: #ffffff;
}

.top-phone-pill:hover .top-phone-icon {
  transform: scale(1.1) rotate(10deg);
}

/* Premium WhatsApp Pill */
.top-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  color: #bbf7d0;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.top-wa-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.top-wa-pill:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: #22c55e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  color: #ffffff;
}

.top-wa-pill:hover .top-wa-icon {
  transform: scale(1.1) rotate(-10deg);
}

/* Responsive Announcement Bar Rules */
@media (max-width: 900px) {
  .announcement-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
  }

  .announcement-left {
    justify-content: center;
    gap: 0.5rem;
  }

  .announcement-actions {
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    padding: 0.4rem 0.5rem;
  }

  .announcement-text {
    font-size: 0.8rem;
  }

  .top-phone-pill, .top-wa-pill {
    padding: 0.25rem 0.65rem;
    font-size: 0.76rem;
  }

  .top-phone-icon, .top-wa-icon {
    width: 18px;
    height: 18px;
  }
}

/* Header & Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px -2px rgba(11, 31, 58, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-seal-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.15);
  border: 2px solid var(--color-gold-500);
  object-fit: cover;
  transition: transform var(--transition-base);
}

.brand-logo-wrap:hover .brand-seal-img {
  transform: rotate(4deg) scale(1.04);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-title span {
  color: var(--color-accent-orange);
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Nav Menu Items & Dropdowns */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-link:hover, .nav-link.active, .nav-item:hover > .nav-link {
  color: var(--color-gold-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-500);
  transition: width var(--transition-base);
  border-radius: 2px;
}

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

.dropdown-chevron {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition-base);
}

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

/* Desktop Dropdown Mega / Popup Menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 45px -10px rgba(7, 19, 34, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 0.85rem;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: 150;
}

/* Invisible bridge to prevent hover loss */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu.dropdown-wide {
  min-width: 420px;
}

.nav-dropdown-menu.dropdown-align-left {
  left: 0;
  transform: translateY(10px);
}

.nav-dropdown-menu.dropdown-align-right {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-dropdown-menu.dropdown-align-left,
.nav-item:focus-within .nav-dropdown-menu.dropdown-align-left {
  transform: translateY(0);
}

.nav-item:hover .nav-dropdown-menu.dropdown-align-right,
.nav-item:focus-within .nav-dropdown-menu.dropdown-align-right {
  transform: translateY(0);
}

.dropdown-header-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 0.35rem 0.65rem 0.5rem 0.65rem;
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-item-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.dropdown-item-link:hover {
  background: var(--color-gold-50);
  transform: translateX(3px);
}

.dropdown-item-link:hover .dropdown-item-title {
  color: var(--color-gold-700);
}

.dropdown-icon-box {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-subtle);
  color: var(--color-brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item-link:hover .dropdown-icon-box {
  background: var(--color-gold-500);
  color: #ffffff;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.dropdown-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dropdown-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  line-height: 1.25;
  transition: color var(--transition-fast);
}

.dropdown-item-desc {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.dropdown-mini-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.12rem 0.4rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mini-badge-gold {
  background: var(--color-gold-100);
  color: var(--color-gold-700);
  border: 1px solid var(--color-gold-200);
}

.mini-badge-alert {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.mini-badge-green {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  border-color: rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-navy {
  background: linear-gradient(135deg, #0b1f3a 0%, #071322 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.25);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #132f54 0%, #0b1f3a 100%);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.05);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border-medium);
  color: var(--color-text-main);
}

.btn-outline:hover {
  border-color: var(--color-brand-navy);
  background: var(--color-bg-subtle);
  color: var(--color-brand-navy);
}

.btn-outline-gold {
  background: rgba(245, 158, 11, 0.08);
  border: 1.5px solid var(--color-gold-500);
  color: var(--color-gold-700);
}

.btn-outline-gold:hover {
  background: var(--color-gold-500);
  color: #ffffff;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-brand-navy);
  cursor: pointer;
  padding: 0.25rem;
}

/* Badges & Pills */
.badge-gold {
  background: var(--color-gold-100);
  color: var(--color-gold-700);
  border: 1px solid var(--color-gold-200);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-navy {
  background: rgba(11, 31, 58, 0.08);
  color: var(--color-brand-navy);
  border: 1px solid rgba(11, 31, 58, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-alert {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Section Header Titles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-gold-600);
  background: var(--color-gold-50);
  border: 1px solid var(--color-gold-200);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--color-gold-600);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Cards & Containers */
.card {
  background: var(--color-bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

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

.card-gold-highlight {
  border: 2px solid var(--color-gold-400);
  position: relative;
  box-shadow: var(--shadow-gold);
}

.card-gold-highlight::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(180, 83, 9, 0.4);
}

/* 5-Stage System Interactive Component */
.stage-timeline-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.stage-tab-btn {
  flex: 1;
  min-width: 140px;
  background: var(--color-bg-surface);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.stage-tab-btn .stage-num {
  width: 28px;
  height: 28px;
  background: var(--color-bg-subtle);
  color: var(--color-brand-navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: all var(--transition-base);
}

.stage-tab-btn .stage-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
  display: block;
}

.stage-tab-btn:hover {
  border-color: var(--color-gold-500);
  background: var(--color-gold-50);
}

.stage-tab-btn.active {
  background: var(--color-brand-navy);
  border-color: var(--color-brand-navy);
  box-shadow: var(--shadow-md);
}

.stage-tab-btn.active .stage-num {
  background: var(--color-gold-500);
  color: #ffffff;
}

.stage-tab-btn.active .stage-title {
  color: #ffffff;
}

.stage-content-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Diagnostic Quiz Widget */
.quiz-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.quiz-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  width: 20%;
  transition: width var(--transition-smooth);
}

.quiz-question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.quiz-question-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold-600);
  text-transform: uppercase;
}

.quiz-topic-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-bg-subtle);
  color: var(--color-brand-navy);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.quiz-question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.quiz-option-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.quiz-option-label:hover {
  border-color: var(--color-gold-500);
  background: var(--color-gold-50);
}

.quiz-option-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold-600);
}

.quiz-option-label.selected {
  border-color: var(--color-gold-600);
  background: var(--color-gold-50);
  font-weight: 600;
}

.quiz-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-result-box {
  text-align: center;
  padding: 1.5rem;
}

.score-meter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin: 1rem 0;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.comparison-table th {
  background: var(--color-bg-subtle);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-brand-navy);
}

.comparison-table th.col-swaminathan {
  background: linear-gradient(180deg, #0b1f3a 0%, #132f54 100%);
  color: #ffffff;
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.comparison-table td.col-swaminathan {
  background: rgba(245, 158, 11, 0.04);
  font-weight: 700;
  color: var(--color-brand-navy);
  border-left: 2px solid var(--color-gold-400);
  border-right: 2px solid var(--color-gold-400);
}

.check-icon {
  color: var(--color-accent-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.cross-icon {
  color: var(--color-accent-red);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  cursor: pointer;
  gap: 1rem;
}

.accordion-header:hover {
  background: var(--color-bg-subtle);
}

.accordion-icon {
  transition: transform var(--transition-base);
  font-size: 1.2rem;
  color: var(--color-gold-600);
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.accordion-item.active .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 300px;
}

/* Modal Dialog */
dialog.custom-modal {
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(7, 19, 34, 0.4);
  max-width: 580px;
  width: 90%;
  margin: auto;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

dialog::backdrop {
  background: rgba(7, 19, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-header {
  background: linear-gradient(135deg, #0b1f3a 0%, #071322 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--color-gold-500);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 2rem;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text-main);
  background: #ffffff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-gold-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Floating Sticky Action Bar for Mobile & Quick Contact */
.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.65rem 1rem;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 80;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.floating-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
}

.floating-action-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   PREMIUM MOBILE NAVIGATION & OFF-CANVAS DRAWER
   ========================================================================== */

/* Animated Hamburger Toggle */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background var(--transition-fast);
  z-index: 95;
}

.mobile-toggle-btn:hover, .mobile-toggle-btn:focus-visible {
  background: var(--color-bg-subtle);
  outline: none;
}

.hamburger-line {
  width: 22px;
  height: 2.2px;
  background: var(--color-brand-navy);
  border-radius: 4px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* Mobile Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 34, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 198;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Off-Canvas Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 199;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -15px 0 35px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.drawer-seal-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-500);
}

.drawer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  line-height: 1.15;
}

.drawer-title span {
  color: var(--color-accent-orange);
}

.drawer-close-btn {
  background: var(--color-bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-navy);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.drawer-close-btn:hover {
  background: #fee2e2;
  color: #b91c1c;
  transform: rotate(90deg);
}

.drawer-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.drawer-alert-banner {
  background: linear-gradient(135deg, #0b1f3a, #071322);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #ffffff;
}

.drawer-alert-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-gold-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.drawer-alert-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-item {
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 0.35rem;
}

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

.drawer-nav-link, .drawer-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.drawer-nav-link:hover, .drawer-dropdown-toggle:hover {
  background: var(--color-gold-50);
  color: var(--color-gold-700);
}

.drawer-chevron {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-base);
}

.drawer-nav-item.active .drawer-chevron {
  transform: rotate(180deg);
}

.drawer-sub-menu {
  display: none;
  list-style: none;
  padding: 0.25rem 0.5rem 0.75rem 1rem;
  margin: 0;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-item.active .drawer-sub-menu {
  display: flex;
}

.drawer-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.drawer-sub-link:hover {
  background: var(--color-bg-subtle);
  color: var(--color-brand-navy);
}

.drawer-sub-link .sub-badge {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.drawer-footer {
  padding: 1.25rem 1.5rem 2.5rem 1.5rem;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.drawer-contact-row a {
  color: var(--color-brand-navy);
  font-weight: 700;
  text-decoration: none;
}

/* Responsive Overrides */
@media (max-width: 1040px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .stage-content-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .floating-bottom-bar {
    display: flex;
  }
}

/* ==========================================================================
   SOCIAL MEDIA ICONS & BUTTONS
   ========================================================================== */
.social-media-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.08);
  color: #ffffff;
}

.social-icon-btn:hover svg {
  transform: scale(1.1);
}

/* Platform specific branding */
.social-icon-btn.social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-icon-btn.social-tg:hover {
  background: #229ED9;
  border-color: #229ED9;
  box-shadow: 0 4px 15px rgba(34, 158, 217, 0.4);
}

.social-icon-btn.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-icon-btn.social-x:hover {
  background: #000000;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.social-icon-btn.social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-icon-btn.social-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Light theme variants for drawer or white cards */
.social-media-row.light-theme .social-icon-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0b1f3a;
}

