@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/*--------------------------------------------------------------
  RANDM FUMOT DEUTSCHLAND - LUXURY FAANG DESIGN SYSTEM
--------------------------------------------------------------*/

:root {
  /* Core Colors */
  --bg-dark: #0b0f19;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(11, 15, 25, 0.85);
  
  /* Vibrant Accents */
  --primary-cyan: #00f2fe;
  --primary-blue: #4facfe;
  --accent-coral: #ff6b2c;
  --accent-violet: #7f00ff;
  --accent-pink: #e100ff;
  
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-coral: linear-gradient(135deg, #ff6b2c 0%, #ff8e53 100%);
  --grad-violet-pink: linear-gradient(135deg, #7f00ff 0%, #e100ff 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-main: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  /* Borders & Shadows */
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-glow: 1px solid rgba(0, 242, 254, 0.35);
  --shadow-glow-cyan: 0 10px 30px -10px rgba(0, 242, 254, 0.35);
  --shadow-glow-coral: 0 10px 30px -10px rgba(255, 107, 44, 0.35);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --header-height: 80px;
}

/*--------------------------------------------------------------
  RESET & BOOTSTRAP OVERRIDES
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main) !important;
  background-color: var(--bg-dark) !important;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(127, 0, 255, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Force light text color on Bootstrap helper classes */
.text-dark, .text-black, .text-muted {
  color: var(--text-main) !important;
}

.bg-light, .bg-light-blue {
  background-color: transparent !important;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6, .display-7 {
  font-family: var(--font-heading) !important;
  color: var(--text-white) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary) !important;
  font-size: 1.02rem;
  line-height: 1.65;
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-blue);
}

/* Glass Card Utility */
.glass-card {
  background: var(--grad-dark-card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover) !important;
  border: var(--border-glass-glow) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cyan);
}

/* Section Padding Utilities */
.padding-small { padding: 3rem 0; }
.padding-medium { padding: 5rem 0; }
.padding-large { padding: 6rem 0; }
.padding-xlarge { padding: 8rem 0; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }

/* Badges */
.badge-18plus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 77, 77, 0.15);
  border: 1px solid rgba(255, 77, 77, 0.4);
  color: #ff4d4d !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary-cyan) !important;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* Glow Buttons */
.btn-glow-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.2rem;
  background: var(--grad-coral);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-glow-coral);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-glow-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(255, 107, 44, 0.5);
  color: #ffffff !important;
}

.btn-glow-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: var(--grad-cyan-blue);
  color: #0b0f19 !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-glow-cyan);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-glow-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(0, 242, 254, 0.5);
  color: #0b0f19 !important;
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: var(--border-glass);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan) !important;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
  SEARCH POPUP OVERLAY (HIDDEN BY DEFAULT)
--------------------------------------------------------------*/
.search-popup {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 25, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-popup.is-visible {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.search-popup-container {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: var(--border-glass-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  color: #ffffff;
  text-align: center;
}

.search-popup .search-field {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  margin-bottom: 1.5rem;
}

.search-popup .quick-links, .search-popup .help-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.search-popup a {
  color: var(--primary-cyan) !important;
  font-weight: 600;
}

/*--------------------------------------------------------------
  1. STICKY HEADER
--------------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar-brand img.logo {
  max-height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 242, 254, 0.3));
}

.nav-link {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 0.8rem !important;
  transition: all 0.3s ease;
}

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

.navbar-toggler {
  border: var(--border-glass) !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md) !important;
}

.navbar-toggler svg.navbar-icon {
  width: 28px;
  height: 28px;
  fill: var(--primary-cyan);
  color: var(--primary-cyan);
}

.offcanvas {
  background: rgba(11, 15, 25, 0.98) !important;
  backdrop-filter: blur(24px);
  border-left: var(--border-glass-glow) !important;
}

.offcanvas-header {
  border-bottom: var(--border-glass);
}

.btn-close-black, .offcanvas .btn-close {
  filter: invert(1) brightness(200%);
}

.dropdown-menu {
  background: rgba(11, 15, 25, 0.96) !important;
  backdrop-filter: blur(20px);
  border: var(--border-glass-glow) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.6rem !important;
  box-shadow: var(--shadow-card) !important;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
}

.dropdown-item:hover {
  background: rgba(0, 242, 254, 0.12) !important;
  color: var(--primary-cyan) !important;
}

/*--------------------------------------------------------------
  2. HERO BILLBOARD
--------------------------------------------------------------*/
#billboard {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  background-image: 
    linear-gradient(135deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.72) 100%),
    url('images/Banner BGK.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#billboard .banner-content {
  max-width: 600px;
}

#billboard .banner-content h1, 
#billboard .banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}

.hero-copy {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 1.5rem;
}

.hero-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

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

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.swiper-arrow {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: var(--border-glass);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-arrow-prev { left: 20px; }
.swiper-arrow-next { right: 20px; }

.swiper-arrow:hover {
  background: var(--primary-cyan);
  color: #0b0f19;
  box-shadow: var(--shadow-glow-cyan);
}

.swiper-arrow svg {
  width: 20px;
  height: 20px;
}

/*--------------------------------------------------------------
  3. TRUST & FEATURE BOXES (#company-services)
--------------------------------------------------------------*/
#company-services {
  position: relative;
  z-index: 5;
  margin-top: -3rem;
}

.icon-box {
  padding: 1.8rem 1.5rem;
  background: var(--grad-dark-card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
}

.icon-box:hover {
  background: var(--bg-card-hover) !important;
  border: var(--border-glass-glow) !important;
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-cyan);
}

.icon-box-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-cyan);
  color: var(--primary-cyan);
}

.icon-box-content h3 {
  font-size: 1.1rem !important;
  margin-bottom: 0.4rem;
  color: var(--text-white) !important;
}

.icon-box-content p {
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  4. PRODUCT SHOWCASE (#mobile-products)
--------------------------------------------------------------*/
#mobile-products {
  position: relative;
}

.product-card {
  background: var(--grad-dark-card) !important;
  backdrop-filter: blur(16px);
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  border: var(--border-glass-glow) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 242, 254, 0.25);
}

.product-card .image-holder {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #ffffff !important;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.06), 0 10px 25px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.product-card .image-holder img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.product-card:hover .image-holder img {
  transform: scale(1.08);
}

.product-card .card-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
  min-height: 3.2rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.3 !important;
}

.product-card .card-title a {
  color: var(--text-white) !important;
}

.product-card .card-title a:hover {
  color: var(--primary-cyan) !important;
}

.product-specs-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
  margin-bottom: 1.2rem;
  min-height: 58px;
}

.product-specs-list span {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-cyan) !important;
  box-shadow: var(--shadow-glow-cyan);
  width: 24px !important;
  border-radius: var(--radius-full) !important;
}

/*--------------------------------------------------------------
  5. BRAND HISTORY & OVERVIEW (#brand-history)
--------------------------------------------------------------*/
#brand-history {
  background: radial-gradient(circle at 50% 50%, rgba(127, 0, 255, 0.06) 0%, transparent 60%),
              rgba(11, 15, 25, 0.9);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.brand-story-card {
  padding: 1.8rem;
  background: var(--grad-dark-card) !important;
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.brand-story-card:hover {
  border-color: var(--primary-cyan) !important;
  transform: translateY(-4px);
}

.brand-story-card .card-bullet-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.brand-story-card p {
  font-size: 0.98rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 0;
  text-align: left;
}

.brand-compliance-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.35);
  border-radius: var(--radius-md);
  text-align: center;
}

.brand-compliance-box strong {
  color: #ff4d4d !important;
  font-size: 1.05rem;
}

/*--------------------------------------------------------------
  6. FAQ ACCORDION SECTION (#faq-info)
--------------------------------------------------------------*/
#faq-info {
  position: relative;
}

.faq-accordion-item {
  background: var(--grad-dark-card) !important;
  border: var(--border-glass) !important;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item.active {
  border-color: var(--primary-cyan) !important;
  box-shadow: var(--shadow-glow-cyan);
}

.faq-accordion-header {
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-accordion-header h4 {
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  color: var(--text-white) !important;
  margin: 0;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon-toggle {
  transform: rotate(180deg);
  background: var(--primary-cyan);
  color: #0b0f19;
}

.faq-accordion-body {
  padding: 0 1.6rem 1.3rem;
  display: none;
  color: var(--text-secondary) !important;
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-accordion-item.active .faq-accordion-body {
  display: block;
}

/*--------------------------------------------------------------
  7. PROMO BANNER (#yearly-sale)
--------------------------------------------------------------*/
#yearly-sale {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 4rem auto;
  border: var(--border-glass) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#yearly-sale::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(11, 15, 25, 0.94) 0%, rgba(11, 15, 25, 0.5) 100%);
  z-index: 1;
}

#yearly-sale .text-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

/*--------------------------------------------------------------
  8. TESTIMONIALS CAROUSEL (#testimonials)
--------------------------------------------------------------*/
#testimonials .review-content {
  position: relative;
  padding: 3.5rem 2rem;
}

.review-item blockquote {
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  color: var(--text-white) !important;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.review-item .author-detail .name {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  color: var(--primary-cyan) !important;
}

.review-rating {
  color: #ffc107;
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Blog Grid */
.post-grid .card {
  background: var(--grad-dark-card) !important;
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.post-grid .card:hover {
  border-color: var(--primary-cyan) !important;
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-cyan);
}

.post-grid .card-image {
  overflow: hidden;
  height: 220px;
  background: #ffffff !important;
}

.post-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s ease;
}

.post-grid .card:hover .card-image img {
  transform: scale(1.06);
}

.post-grid .card-body {
  padding: 1.5rem;
}

.post-grid .card-title a {
  color: var(--text-white) !important;
  font-size: 1.1rem !important;
}

.post-grid .card-title a:hover {
  color: var(--primary-cyan) !important;
}

/*--------------------------------------------------------------
  9. GALLERY SHOWCASE (.gallery-card)
--------------------------------------------------------------*/
.gallery-card {
  position: relative;
  padding: 1.5rem;
  background: var(--grad-dark-card) !important;
  border: var(--border-glass) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  border: var(--border-glass-glow) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 242, 254, 0.3);
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--primary-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  width: fit-content;
}

.badge-featured {
  background: rgba(255, 107, 44, 0.15);
  border-color: rgba(255, 107, 44, 0.4);
  color: #ff6b2c;
}

.gallery-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  width: 100%;
  border-radius: 18px;
  background: #ffffff !important;
  padding: 0.8rem;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.06), 0 10px 25px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.gallery-img-wrapper img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--text-white) !important;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
  10. FLOATING STICKY CTA BAR
--------------------------------------------------------------*/
.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(11, 15, 25, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: var(--border-glass-glow);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta-bar.visible {
  transform: translateY(0);
}

.floating-cta-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

/*--------------------------------------------------------------
  11. FOOTER
--------------------------------------------------------------*/
#footer {
  background: #060912 !important;
  border-top: var(--border-glass);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.footer-menu p {
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
}

.footer-menu .widget-title {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: var(--text-white) !important;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.menu-list .menu-item a {
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.menu-list .menu-item a:hover {
  color: var(--primary-cyan) !important;
  padding-left: 4px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: fill 0.3s ease;
}

.social-links li span:hover svg {
  fill: var(--primary-cyan);
}

#footer-bottom {
  background: #04060a !important;
  padding: 1.5rem 0;
  border-top: rgba(255, 255, 255, 0.05) 1px solid;
}

/*--------------------------------------------------------------
  12. MOBILE RESPONSIVE RULES
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  #billboard {
    padding-top: calc(var(--header-height) + 1rem);
    text-align: center;
  }
  
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-pills-container {
    justify-content: center;
  }

  .floating-cta-info {
    display: none;
  }
  
  .floating-cta-bar .btn-glow-primary {
    width: 100%;
  }

  .icon-box {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  #billboard .banner-content h1, 
  #billboard .banner-content h2 {
    font-size: clamp(2rem, 9vw, 2.5rem) !important;
  }
  
  .padding-large {
    padding: 3.5rem 0;
  }
  
  .product-card {
    padding: 1.2rem;
  }
}
