/* style.css - PREMIUM CINEMATIC LANDING | FADE-IN-UP ON SCROLL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.slide {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 30px 0;
  transition: none;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#slide2 {
  padding-top: 60px;
}

.slide-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 5% 0px;
  position: relative;
  z-index: 15;
  opacity: 1;
  transform: none;
  transition: none;
}

.slide.active .slide-content {
  opacity: 1;
  transform: none;
}

/* ----- FADE-IN-UP ANIMATION (GSAP driven) ----- */
.fade-item {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}

/* ----- TYPOGRAPHY ----- */
.desc {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 0px;
  text-align: justify;
}

.tag {
 
  display:none;
}
.tagline {
    font-size: 12px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    background: rgb(38 28 28);
    padding: 5px 14px;
    border-radius: 0px;
    backdrop-filter: blur(4px);
    border-left: 2px solid #E31B23;
    color: #fff !important;
    display: block;
    margin-top: 10px !important;
}

.hero-main {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #ff9a5a, #E31B23);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-sub-main {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #f0f0f0;
}

.italic-text {
  font-style: italic;
}

/* ============================================
   PREMIUM SECTION HEADINGS (Task 2)
   ============================================ */
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #E31B23, rgba(227, 27, 35, 0.2));
  border-radius: 4px;
}

.section-heading .accent-text {
  color: #E31B23;
  display: inline-block;
}

/* ----- VIDEO ----- */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: contain;
  background: #000;
}

.hero-text-fade-out {
  animation: fadeOutText 0.8s ease-out forwards;
}

@keyframes fadeOutText {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); visibility: hidden; }
}

.video-fullscreen-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid #E31B23;
  border-radius: 50px;
  padding: 10px 22px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.video-fullscreen-btn:hover {
  background: #E31B23;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.5);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(227, 27, 35, 0.3);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  color: #E31B23;
  transform: rotate(90deg);
}

/* ----- OVERLAYS & BACKGROUNDS ----- */
.premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 70%, rgba(139, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.premium-overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
  pointer-events: none;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* ----- NAVIGATION (minimal) ----- */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid rgba(227, 27, 35, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.closing-quote {
    font-size: 15px;
    font-style: italic;
    font-weight: 900;
}
.logo-wrapper {
  margin-bottom: 4px;
}

.navbar-brand img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Hamburger Toggle */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
  padding: 2px 0;
}

.hamburger-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.hamburger-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  transition: all 0.4s ease-in-out;
}

.nav-links a {
  color: #f0f0f0;
  padding: 4px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: #E31B23;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active-nav:after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active-nav {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.12);
}

/* ----- DROPDOWN MENU ----- */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-wrapper .dropdown-toggle-link {
  color: #f0f0f0;
  padding: 4px 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-wrapper .dropdown-toggle-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper .dropdown-toggle-link:after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: #E31B23;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper .dropdown-toggle-link:hover:after,
.nav-dropdown-wrapper .dropdown-toggle-link.active-nav:after {
  transform: scaleX(1);
}

.nav-dropdown-wrapper .dropdown-toggle-link:hover,
.nav-dropdown-wrapper .dropdown-toggle-link.active-nav {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.12);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 6px;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-dropdown-menu li a:hover {
  color: #E31B23;
  background: rgba(227, 27, 35, 0.08);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-wrapper:hover .dropdown-toggle-link i {
  transform: rotate(180deg);
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator-custom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
  cursor: pointer;
  color: #E31B23;
  font-size: 28px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ----- IMAGE STYLES ----- */
.image-hover-simple {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.image-hover-simple img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: block;
}

.img-style {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
}

.simple-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.image-hover-simple:hover .simple-overlay {
  background: rgba(0, 0, 0, 0.20);
}

.image-hover-simple:hover img {
  transform: scale(1.08);
}

/* ----- CARDS ----- */
.capability-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 27, 35, 0.4);
  border-radius: 20px;
  padding: 25px 20px;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(227, 27, 35, 0.2);
  border-color: #E31B23;
}

.card-icon {
  font-size: 35px;
  color: #E31B23;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.capability-card:hover .card-icon {
  transform: scale(1.05);
}

.card-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 0;
}

/* ----- CONTACT CARDS (new) ----- */
.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 27, 35, 0.4);
  border-radius: 20px;
  padding: 25px 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), 
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(227, 27, 35, 0.15);
  border-color: #E31B23;
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
  color: #fff;
}

.contact-card p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-detail {
  color: #E31B23 !important;
  font-size: 14px;
  margin-top: 8px !important;
}

.contact-detail i {
  margin-right: 8px;
  width: 18px;
}

/* ============================================
   PREMIUM BADGES (Task 3 - Replaces pill buttons)
   ============================================ */
.premium-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 27, 35, 0.25);
      padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #e8e8e8;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: none;
  cursor: default;
  position: relative;
}

/* Subtle decorative line on the left */
.premium-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background: linear-gradient(180deg, #E31B23, rgba(227, 27, 35, 0.2));
  border-radius: 2px;
}


/* ----- KNOW MORE BUTTON ----- */
.know-more-btn {
  display: inline-block;
  background: transparent;
  color: #E31B23;
  border: 2px solid #E31B23;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.know-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.know-more-btn:hover {
  background: #E31B23;
  color: #fff;
  box-shadow: 0 5px 20px rgba(227, 27, 35, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.know-more-btn:hover i {
  transform: translateX(4px);
}

/* ----- FOOTER ----- */
.premium-footer {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(227, 27, 35, 0.3);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px 24px 0 0;
  width: 100%;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px 8px 24px;
  margin: 0;
}

.footer-col {
  flex: 1;
  min-width: 160px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #E31B23;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #E31B23;
  transition: width 0.3s ease;
}

.footer-col:hover h4:after {
  width: 45px;
}

.footer-col p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 4px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #E31B23;
  transform: translateX(4px);
}

.contact-footer-list li {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.contact-footer-list li i {
  color: #E31B23;
  width: 16px;
  font-size: 11px;
}

.contact-footer-list li:hover {
  color: #E31B23;
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(227, 27, 35, 0.15);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(227, 27, 35, 0.4);
}

.social-links a:hover {
  background: #E31B23;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(227, 27, 35, 0.4);
}

.footer-bottom {
  text-align: center;
  padding: 6px 20px 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

.footer-bottom p {
  color: #888;
  font-size: 11px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  padding-top: 15px;
}

.footer-small-text {
  font-size: 12px;
  color: #888;
}

.product-ref-text {
  font-size: 13px;
  color: #888;
}

.product-link {
  color: #E31B23;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

/* ----- UTILITY ----- */
#slide9 {
  padding-bottom: 30px;
  padding-top: 30px;
  min-height: auto;
}

#slide9 .slide-content {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
  .hero-main { font-size: 60px; }
  .section-heading { font-size: 44px; }
}

@media (max-width: 992px) {
  .hero-main { font-size: 48px; }
  .section-heading { font-size: 38px; }
  .slide { padding: 60px 0 30px 0; }
  #slide2 { padding-top: 50px; }
  
  /* Mobile menu styles */
  .hamburger-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 30px 30px;
    gap: 8px;
    overflow-y: auto;
    border-left: 2px solid rgba(227, 27, 35, 0.3);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    align-items: stretch;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    border-left: 2px solid transparent;
  }
  
  .nav-links a:after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active-nav {
    background: rgba(227, 27, 35, 0.12);
    border-left-color: #E31B23;
  }
  
  .nav-dropdown-wrapper {
    width: 100%;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 14px;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    border-left: 2px solid transparent;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link:after {
    display: none;
  }
  
  .nav-dropdown-wrapper .dropdown-toggle-link:hover,
  .nav-dropdown-wrapper .dropdown-toggle-link.active-nav {
    background: rgba(227, 27, 35, 0.12);
    border-left-color: #E31B23;
  }
  
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    padding: 4px 0;
    margin: 4px 0 0 0;
    box-shadow: none;
    display: none;
    width: 100%;
  }
  
  .nav-dropdown-wrapper.active .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-menu li a {
    font-size: 13px;
    padding: 10px 20px 10px 30px;
    border-radius: 8px;
  }
  
  /* Image first on mobile - override Bootstrap order */
  .row [class*="col-"].order-1 {
    order: 1 !important;
  }
  .row [class*="col-"].order-2 {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  .hero-main { font-size: 36px; }
  .hero-sub-main { font-size: 14px; }
  .section-heading { 
    font-size: 30px; 
    padding-bottom: 6px;
  }
  .section-heading::after {
    width: 50px;
    height: 3px;
  }
  .tag { font-size: 10px; }
  .slide { padding: 50px 0 25px 0; }
  #slide2 { padding-top: 45px; }
  .navbar-brand img { height: 50px; }
  .nav-links {
    width: 85%;
    padding: 80px 20px 20px;
  }
  .nav-links a {
    font-size: 13px;
    padding: 10px 14px;
  }
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 13px;
    padding: 10px 14px;
  }
  .nav-dropdown-menu li a {
    font-size: 12px;
    padding: 8px 16px 8px 26px;
  }
  .footer-row { flex-direction: column; gap: 14px; padding: 16px 20px 8px 20px; }
  .footer-col { min-width: 100%; text-align: center; }
  .footer-col h4:after { left: 50%; transform: translateX(-50%); }
  .social-links { justify-content: center; }
  .contact-footer-list li { justify-content: center; }
  .premium-footer { border-radius: 20px 20px 0 0; }
  .premium-badge { 
    font-size: 10px; 
    padding: 6px 16px; 
    letter-spacing: 0.4px;
  }
  .premium-badge::before {
    display: none;
  }
  .know-more-btn { font-size: 12px; padding: 8px 22px; }
}

@media (max-width: 576px) {
  .hero-main { font-size: 28px; }
  .section-heading { 
    font-size: 24px; 
    padding-bottom: 4px;
  }
  .section-heading::after {
    width: 40px;
    height: 2px;
  }
  .slide { padding: 45px 0 25px 0; }
  #slide2 { padding-top: 40px; }
  .navbar-brand img { height: 40px; }
  .nav-links {
    width: 90%;
    padding: 70px 16px 16px;
  }
  .nav-links a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .nav-dropdown-wrapper .dropdown-toggle-link {
    font-size: 12px;
    padding: 8px 12px;
  }
  .nav-dropdown-menu li a {
    font-size: 11px;
    padding: 6px 14px 6px 22px;
  }
  .footer-row { padding: 12px 16px 6px 16px; gap: 12px; }
  .footer-bottom { padding: 4px 16px 8px 16px; }
  .premium-badge { 
    font-size: 9px; 
    padding: 5px 14px; 
    letter-spacing: 0.3px;
    border-radius: 4px;
  }
}