@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #fab400;
  --primary-hover: #e0a200;
  --primary-foreground: #1a1a1a;
  --secondary: #5c247d;
  --secondary-dark: #431960;
  --secondary-foreground: #ffffff;
  --dark-bg: #1a1a2e;
  --badges-bg: #2a2a2a;
  --foreground: #2d1844;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--foreground);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
}

/* Site Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.site-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #333333;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.nav-pills .nav-link {
  color: #4b5563;
  background-color: #ffffff;
  transition: all 0.25s ease;
  border: 1px solid #f1f5f9;
}

.nav-pills .nav-link:hover {
  color: var(--secondary);
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.nav-pills .nav-link.active {
  color: #000000 !important;
  background-color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 10px 25px -5px rgba(250, 180, 0, 0.3) !important;
}

.nav-pills .nav-link.active i {
  color: var(--primary) !important;
}

.hover-shadow-lg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-shadow-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.extra-small {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}


.dropdown-menu {
  border: 1px solid #f1f1f1;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  color: #444;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #fff9e6;
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--secondary-dark);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 25, 96, 0.92) 0%, rgba(92, 36, 125, 0.75) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  max-width: 950px;
  padding: 2rem 1rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(250, 180, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(250, 180, 0, 0.35);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.25rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: #f3f4f6;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
  border-radius: 50rem;
  border: none;
  box-shadow: 0 10px 25px rgba(250, 180, 0, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(250, 180, 0, 0.45);
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 2.25rem;
  border-radius: 50rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: var(--secondary-dark);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Feature Badges Section */
.feature-badges-section {
  background-color: var(--badges-bg);
  border-bottom: 4px solid var(--primary);
  padding: 1.75rem 0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.badge-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #888888;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.badge-slash {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #888888;
  transform: rotate(-45deg);
}

/* Product Tabs Section */
.product-tabs-section {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.section-heading-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.section-gold-line {
  width: 5rem;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50rem;
  margin: 0 auto;
}

.nav-pills-unibis .nav-link {
  background: transparent;
  color: #6b7280;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-pills-unibis .nav-link.active,
.nav-pills-unibis .nav-link:hover {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-color: #f3f4f6;
}

/* Product Card */
.unibis-product-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid #f1f1f1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.unibis-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.09);
  color: inherit;
}

.product-img-box {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

.unibis-product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.product-card-excerpt {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* About Section */
.about-section-unibis {
  padding: 6rem 0;
  background-color: #ffffff;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(250, 180, 0, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}

.about-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.about-video-box {
  position: relative;
  height: 480px;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.about-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 2rem;
  color: #ffffff;
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2.25rem;
  height: 100%;
}

.vision-card-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vision-bar {
  width: 2rem;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50rem;
}

.values-card {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 1.5rem;
  padding: 2.25rem;
  height: 100%;
}

/* Ar-Ge & Counters Section */
.arge-section {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.arge-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
  height: 100%;
}

.arge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.arge-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background-color: rgba(250, 180, 0, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.arge-card:hover .arge-icon-box {
  background-color: var(--primary);
  color: #ffffff;
}

.counters-banner {
  background-color: var(--secondary);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.counter-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* Testimonials Slider */
.testimonials-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.testimonial-card-box {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #f1f1f1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Brands Marquee */
.brands-section {
  padding: 4rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
}

@keyframes marqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-track {
  display: flex;
  width: max-content;
  animation: marqueeAnim 25s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-card-item {
  width: 180px;
  height: 110px;
  margin: 0 1.25rem;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.brand-card-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-card-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 180, 0, 0.15);
}

.brand-card-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Footer */
.unibis-footer {
  background-color: var(--dark-bg);
  color: #ffffff;
  border-top: 8px solid var(--primary);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-brand-logo {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bar {
  width: 1rem;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50rem;
}

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

.footer-links-list li {
  margin-bottom: 0.85rem;
}

.footer-links-list a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--primary);
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Article & Content Links */
.blog-rich-content a,
.prose a,
.article-body a,
.dynamic-page-content a {
  color: #d97706 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.blog-rich-content a:hover,
.prose a:hover,
.article-body a:hover,
.dynamic-page-content a:hover {
  color: #5d2880 !important;
  text-decoration-color: #5d2880;
}

/* Mobile Responsive Optimizations */
@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden;
  }
  .site-logo-img {
    max-height: 40px !important;
  }
  .header-search-btn {
    width: 36px !important;
    height: 36px !important;
  }
  .hero-video-section {
    min-height: 80vh !important;
  }
  .product-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .product-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .product-tabs-nav .nav-item {
    flex-shrink: 0;
  }
  /* Footer clear space for floating action buttons */
  .unibis-footer {
    padding-bottom: 7.5rem !important;
  }
  .unibis-floating-actions {
    bottom: 110px !important;
    right: 18px !important;
    gap: 12px !important;
  }
}


