/* ==========================================================================
   Bahu-Ayami Party (BAP) - Pure CSS Design System & Stylesheet
   ========================================================================== */

:root {
  /* Primary Party Colors */
  --color-primary: #123B72;
  --color-primary-dark: #0D2B54;
  --color-primary-light: #1E4F91;
  --color-secondary: #16804A;
  --color-secondary-dark: #0F5E36;
  --color-secondary-light: #229C5D;
  --color-saffron: #F28C28;
  --color-saffron-dark: #D47416;
  --color-saffron-light: #FFA64D;
  --color-gold: #D4AF37;
  
  /* Neutral Colors */
  --color-dark: #17202A;
  --color-text-body: #2C3E50;
  --color-text-muted: #566573;
  --color-bg-light: #F5F7FA;
  --color-bg-alt: #EBF2FA;
  --color-white: #FFFFFF;
  --color-border: #D5D8DC;
  --color-border-light: #EAECEE;

  /* Fonts */
  --font-hi: 'Noto Sans Devanagari', 'Inter', sans-serif;
  --font-en: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Noto Sans Devanagari', 'Poppins', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(18,59,114,0.08);
  --shadow-lg: 0 8px 24px rgba(18,59,114,0.12);
  --shadow-xl: 0 16px 36px rgba(18,59,114,0.16);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* Base Resets & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-hi);
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.lang-en {
  font-family: var(--font-en);
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-saffron);
  color: var(--color-dark);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 10000;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Focus Outline */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-saffron);
  outline-offset: 2px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.3;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F1F1;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Civic Flag Stripe Motif */
.flag-stripe {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-saffron) 33%, var(--color-white) 33% 66%, var(--color-secondary) 66%);
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(18, 59, 114, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(18, 59, 114, 0.15);
}

.flag-badge.saffron {
  background: rgba(242, 140, 40, 0.12);
  color: var(--color-saffron-dark);
  border-color: rgba(242, 140, 40, 0.3);
}

.flag-badge.green {
  background: rgba(22, 128, 74, 0.12);
  color: var(--color-secondary-dark);
  border-color: rgba(22, 128, 74, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(18, 59, 114, 0.25);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 59, 114, 0.35);
}

.btn-saffron {
  background-color: var(--color-saffron);
  color: var(--color-dark);
  box-shadow: 0 4px 10px rgba(242, 140, 40, 0.3);
}
.btn-saffron:hover {
  background-color: var(--color-saffron-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(22, 128, 74, 0.25);
}
.btn-green:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Sections & Spacing */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}

.section-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.section-primary h1, .section-primary h2, .section-primary h3, .section-primary h4 {
  color: var(--color-white);
}

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

.section-header .subtitle {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-saffron);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.section-header.text-left .section-title::after {
  margin-left: 0;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.section-dark .section-desc {
  color: #B0BEC5;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 59, 114, 0.2);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease-out;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.form-label.required::after {
  content: ' *';
  color: #E53935;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 59, 114, 0.15);
}

.form-control.error {
  border-color: #E53935;
}

.error-text {
  color: #E53935;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-primary { background: rgba(18,59,114,0.1); color: var(--color-primary); }
.badge-green { background: rgba(22,128,74,0.1); color: var(--color-secondary); }
.badge-saffron { background: rgba(242,140,40,0.15); color: var(--color-saffron-dark); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.75rem; }
}

/* ==========================================================================
   Header & Navigation Components
   ========================================================================== */

/* TopBar */
.top-bar {
  background-color: #0D2B54;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.slogan-badge {
  background: rgba(242, 140, 40, 0.25);
  color: #FFA64D;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(242, 140, 40, 0.4);
}

.top-bar-item {
  color: #E2E8F0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}
.top-bar-item:hover { color: #FFA64D; }

.whatsapp-link {
  color: #4ADE80;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}
.whatsapp-link:hover { color: #86EFAC; }

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}
.lang-btn:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-dark);
}

/* Sticky Navbar */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.sticky-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-img-real {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.flag-img-real {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-link {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

/* Nav Dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-dark);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-dropdown-btn:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  padding: 0.5rem 0;
  z-index: 1050;
  display: none;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper.active .nav-dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-item:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 9999;
  display: none;
}

.mobile-drawer-overlay.active {
  display: block;
}

.mobile-drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--color-white);
  z-index: 10000;
  overflow-y: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  transform: translateX(0);
}

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

.mobile-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-drawer-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Hero Section */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #0D2B54 0%, #123B72 60%, #16804A 100%);
  color: var(--color-white);
  padding: 5rem 0 6rem 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242, 140, 40, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.2rem;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--color-saffron-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-box {
  position: relative;
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
}

/* Trust Strip */
.trust-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
  border-right: 1px solid var(--color-border-light);
}
.trust-item:last-child {
  border-right: none;
}

.trust-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-lbl {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Footer */
.main-footer {
  background-color: #0D2B54;
  color: #E2E8F0;
}

.footer-top {
  padding: 4rem 0 3rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-badge {
  width: 42px;
  height: 42px;
  background: #F28C28;
  color: #0D2B54;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin: 0;
}

.footer-sub {
  color: #A0AEC0;
  font-size: 0.75rem;
}

.footer-desc {
  color: #A0AEC0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-icon:hover {
  background: var(--color-saffron);
  color: var(--color-dark);
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.footer-col-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--color-saffron);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: #CBD5E0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #FFA64D;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #CBD5E0;
}

.icon-gold {
  color: #F28C28;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  background: #081B36;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #A0AEC0;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-links a {
  color: #A0AEC0;
  text-decoration: none;
}
.legal-links a:hover {
  color: #FFFFFF;
}

.scroll-top-btn {
  background: var(--color-saffron);
  color: var(--color-dark);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
}

/* Sticky Mobile CTA Bar */
.bottom-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D2B54;
  padding: 0.6rem 1rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 990;
  gap: 0.75rem;
}

.bottom-mobile-cta .btn {
  flex: 1;
  padding: 0.6rem;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .top-bar-left .top-bar-item:nth-child(2) { display: none; }
  .slogan-badge { font-size: 0.75rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--color-border-light); }
  .bottom-mobile-cta { display: flex; }
  body { padding-bottom: 60px; }
  .footer-bottom-container { flex-direction: column; gap: 1rem; text-align: center; }
}

@media print {
  .no-print { display: none !important; }
}
