/* ========================================
   LUMINARY JOURNEY - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ======================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Montserrat', 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E8E8E8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #F7B32B;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #E8E8E8;
  border-left: 4px solid #C73D0A;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #E8E8E8;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #CCCCCC;
}

p {
  margin-bottom: 16px;
  color: #B8B8B8;
  line-height: 1.8;
}

a {
  color: #F7B32B;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C73D0A;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #B8B8B8;
}

li {
  margin-bottom: 8px;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER - INDUSTRIAL STYLE */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 20px 0;
  border-bottom: 3px solid #C73D0A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(247, 179, 43, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION - INDUSTRIAL */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F7B32B;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F7B32B;
  text-decoration: none;
  border-bottom: 2px solid #C73D0A;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #C73D0A;
  border: 2px solid #8B2C07;
  color: #FFFFFF;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(199, 61, 10, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B2C07;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 3px solid #C73D0A;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #C73D0A;
  color: #F7B32B;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C73D0A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #E8E8E8;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.mobile-nav a:hover {
  background: rgba(199, 61, 10, 0.2);
  border-left-color: #F7B32B;
  transform: translateX(8px);
  text-decoration: none;
}

/* HERO SECTION - INDUSTRIAL MODERN */
.hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #C73D0A;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(199, 61, 10, 0.03) 10px,
      rgba(199, 61, 10, 0.03) 20px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #F7B32B;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.subheadline {
  font-size: 20px;
  color: #CCCCCC;
  margin-bottom: 32px;
  font-weight: 300;
}

.breadcrumbs {
  color: #999999;
  font-size: 14px;
  margin-top: 16px;
}

/* BUTTONS - INDUSTRIAL STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #C73D0A;
  color: #FFFFFF;
  border-color: #8B2C07;
  box-shadow: 0 4px 12px rgba(199, 61, 10, 0.4);
}

.btn-primary:hover {
  background: #8B2C07;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(199, 61, 10, 0.6);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #F7B32B;
  border-color: #F7B32B;
}

.btn-secondary:hover {
  background: #F7B32B;
  color: #1A1A1A;
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(247, 179, 43, 0.1);
  border: 1px solid #F7B32B;
  border-radius: 4px;
  color: #F7B32B;
  font-size: 14px;
  font-weight: 600;
}

/* SECTIONS - INDUSTRIAL SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  color: #CCCCCC;
  font-size: 18px;
  margin-bottom: 40px;
}

/* BENEFITS SECTION */
.benefits {
  background: #252525;
  border-top: 3px solid #C73D0A;
  border-bottom: 3px solid #C73D0A;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 32px;
  border-left: 4px solid #C73D0A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #F7B32B;
  transition: height 0.3s ease;
}

.benefit-item:hover::before {
  height: 100%;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(199, 61, 10, 0.4);
}

.benefit-item h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.benefit-item p {
  color: #B8B8B8;
}

/* SERVICES/PRODUCTS GRID - FLEXBOX ONLY */
.services-grid,
.products-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.product-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 32px;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after,
.product-card::after,
.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C73D0A 0%, #F7B32B 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after,
.product-card:hover::after,
.category-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover,
.product-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  border-color: #C73D0A;
  box-shadow: 0 8px 24px rgba(199, 61, 10, 0.4);
}

.service-card h3,
.product-card h3,
.category-card h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.service-card p,
.product-card p,
.category-card p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #F7B32B !important;
  margin: 20px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background: #1F1F1F;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #F7B32B;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #E8E8E8;
  padding: 32px;
  border-left: 6px solid #C73D0A;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #C73D0A;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #555555;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  border-top: 2px solid #C73D0A;
  padding-top: 12px;
  margin-top: 16px;
}

/* CTA BANNER - INDUSTRIAL */
.cta-banner {
  background: linear-gradient(135deg, #C73D0A 0%, #8B2C07 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #F7B32B;
  border-bottom: 3px solid #F7B32B;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.1) 10px,
      rgba(0, 0, 0, 0.1) 20px
    );
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  border-left: none;
  padding-left: 0;
}

.cta-banner p {
  color: #F0F0F0;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #C73D0A;
  border-color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #F7B32B;
  color: #1A1A1A;
  border-color: #F7B32B;
}

.contact-info {
  color: #F0F0F0;
  font-size: 16px;
  margin-top: 24px;
  font-weight: 600;
}

/* FEATURES SECTION */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: #252525;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-item:hover {
  border-color: #F7B32B;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(247, 179, 43, 0.3);
}

.feature-item h3 {
  color: #F7B32B;
}

.feature-item p {
  color: #B8B8B8;
}

/* ABOUT/MISSION SECTIONS */
.about-story,
.mission-values,
.social-responsibility {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.values-grid,
.csr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-item,
.csr-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  border-left: 4px solid #F7B32B;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.value-item h3,
.csr-item h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.value-item p,
.csr-item p {
  color: #B8B8B8;
}

/* ACHIEVEMENTS SECTION */
.achievements {
  background: #1F1F1F;
  padding: 60px 20px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.achievement-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #C73D0A 0%, #8B2C07 100%);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(199, 61, 10, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.achievement-card h3 {
  font-size: 48px;
  color: #F7B32B;
  margin-bottom: 8px;
}

.achievement-card p {
  color: #FFFFFF;
  font-weight: 600;
}

/* ARTICLES/ADVICE SECTIONS */
.articles-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card,
.tip-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 28px;
  background: #252525;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover,
.tip-card:hover {
  border-color: #F7B32B;
  transform: translateY(-4px);
}

.article-card h3,
.tip-card h3 {
  color: #F7B32B;
  margin-bottom: 12px;
}

.reading-time {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(247, 179, 43, 0.2);
  color: #F7B32B;
  font-size: 12px;
  border-radius: 4px;
  margin-top: 12px;
}

.expert {
  color: #C73D0A !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px !important;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  background: #252525;
  border-left: 4px solid #C73D0A;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #F7B32B;
  transform: translateX(8px);
}

.faq-item h3 {
  color: #F7B32B;
  margin-bottom: 12px;
}

.faq-item p {
  color: #B8B8B8;
}

/* CONTACT SECTIONS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  border-color: #F7B32B;
  transform: translateY(-4px);
}

.contact-card h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.contact-card .contact-info {
  color: #C73D0A;
  font-weight: 700;
  font-size: 18px;
  margin: 16px 0;
}

.contact-card p {
  color: #B8B8B8;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #252525;
  border: 2px dashed #C73D0A;
  border-radius: 4px;
  text-align: center;
}

.form-note {
  color: #F7B32B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* LOCATION INFO */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.location-details > div {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 24px;
  background: #252525;
  border-left: 4px solid #C73D0A;
  border-radius: 4px;
}

.location-details h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.location-details p {
  color: #B8B8B8;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #252525;
  border-left: 4px solid #C73D0A;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.legal-section h2 {
  color: #F7B32B;
  margin-bottom: 20px;
  border-left: none;
  padding-left: 0;
}

.legal-section h3 {
  color: #F7B32B;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-top: 16px;
}

.legal-section li {
  color: #B8B8B8;
  margin-bottom: 8px;
}

.last-updated {
  color: #999999;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

/* COOKIE TYPES */
.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.cookie-type {
  padding: 24px;
  background: #1F1F1F;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  position: relative;
}

.cookie-type h3 {
  color: #F7B32B;
  margin-bottom: 12px;
}

.cookie-type .badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #10A810;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(16, 168, 16, 0.4);
}

.confirmation-message,
.next-steps,
.special-offer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #252525;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  border-color: #F7B32B;
  transform: translateY(-4px);
}

.step-card h3 {
  color: #F7B32B;
  margin-bottom: 16px;
}

.offer-validity {
  color: #999999 !important;
  font-size: 14px;
  margin-top: 12px;
}

/* FOOTER - INDUSTRIAL */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #C73D0A;
  color: #B8B8B8;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(247, 179, 43, 0.3));
}

.footer-column h4 {
  color: #F7B32B;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.footer-column p {
  color: #999999;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #F7B32B;
  padding-left: 20px;
  text-decoration: none;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid #3A3A3A;
  padding-top: 24px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #999999;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #F7B32B;
}

.footer-bottom p {
  color: #666666;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 20px;
  border-top: 3px solid #C73D0A;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  color: #CCCCCC;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #C73D0A;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h2 {
  color: #F7B32B;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3A3A3A;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #F7B32B;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Show Mobile Menu Button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide Desktop Nav */
  .main-nav {
    display: none;
  }

  /* Mobile Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 16px;
  }

  /* Mobile Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Mobile Grids - Full Width */
  .benefits-grid,
  .services-grid,
  .products-grid,
  .categories-grid,
  .testimonials-grid,
  .features-grid,
  .values-grid,
  .achievements-grid,
  .articles-grid,
  .tips-grid,
  .contact-grid,
  .steps-grid,
  .csr-grid {
    flex-direction: column;
  }

  .benefit-item,
  .service-card,
  .product-card,
  .category-card,
  .testimonial-card,
  .feature-item,
  .value-item,
  .achievement-card,
  .article-card,
  .tip-card,
  .contact-card,
  .step-card,
  .csr-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  /* Mobile Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Mobile Location Details */
  .location-details {
    flex-direction: column;
  }

  .location-details > div {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 32px 16px;
  }

  .hero {
    padding: 48px 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations on page load */
.hero-content {
  animation: fadeIn 0.8s ease-out;
}

.benefit-item,
.service-card,
.product-card {
  animation: fadeIn 0.6s ease-out backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background: #000000;
    color: #FFFFFF;
  }

  .btn-primary {
    border-width: 3px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* End of Luminary Journey Industrial Modern CSS */