/* ============================================
   SPARKLE BEYOND - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY - INDUSTRIAL MODERN FONTS
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #F4A261;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 100%);
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  color: #e0e0e0;
  font-weight: 600;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background-color: #252525;
  border-left: 4px solid #F4A261;
}

/* ============================================
   BUTTONS - INDUSTRIAL METALLIC STYLE
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid #3d7ab8;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3d7ab8 0%, #2C5F8D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: linear-gradient(135deg, #F4A261 0%, #e08945 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid #f5b680;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f5b680 0%, #F4A261 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   HEADER - INDUSTRIAL NAVIGATION
   ============================================ */

header {
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #F4A261;
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(244, 162, 97, 0.3));
}

.tagline {
  font-size: 12px;
  color: #b0b0b0;
  font-style: italic;
  max-width: 300px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F4A261;
}

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

.header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================
   MOBILE MENU - INDUSTRIAL SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  color: #ffffff;
  border: 2px solid #F4A261;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3d7ab8 0%, #2C5F8D 100%);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 3px solid #F4A261;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F4A261;
  border: 2px solid #F4A261;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F4A261;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 30px 30px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4A261;
  padding-left: 10px;
  border-left: 3px solid #F4A261;
}

/* ============================================
   HERO SECTION - INDUSTRIAL IMPACT
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #F4A261;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(244, 162, 97, 0.03) 10px,
    rgba(244, 162, 97, 0.03) 20px
  );
  pointer-events: none;
}

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

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

.hero-subheadline {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  padding: 80px 20px 60px;
  position: relative;
  border-bottom: 4px solid #F4A261;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 50%, #F4A261 100%);
}

.breadcrumbs {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #F4A261;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #f5b680;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
}

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */

.features-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.products-grid,
.values-grid,
.stats-grid,
.tiers-grid,
.options-grid,
.tips-grid,
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.feature-card,
.service-card,
.benefit-card,
.testimonial-card,
.product-card,
.value-card,
.stat-card,
.tier-card,
.option-card,
.tip-card,
.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 32px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:hover,
.service-card:hover,
.benefit-card:hover,
.product-card:hover,
.value-card:hover,
.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(244, 162, 97, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-left-color: #2C5F8D;
}

.feature-card img,
.benefit-card img,
.value-card img,
.option-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(244, 162, 97, 0.3));
}

.feature-card h3,
.service-card h3,
.benefit-card h3,
.product-card h3,
.value-card h3,
.tier-card h3,
.option-card h3,
.tip-card h3 {
  color: #F4A261;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #F4A261;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.discount {
  font-size: 32px;
  font-weight: 700;
  color: #F4A261;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS - DARK ON LIGHT FOR READABILITY
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 20px;
}

.testimonial-card {
  background: linear-gradient(135deg, #E9F1F7 0%, #d4e4f0 100%);
  border-left: 4px solid #2C5F8D;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.testimonial-card .author {
  color: #1a1a1a;
  font-style: normal;
  border-top: 2px solid #2C5F8D;
  padding-top: 16px;
  margin-top: 16px;
}

.testimonial-card .author strong {
  color: #2C5F8D;
  display: block;
  margin-bottom: 4px;
}

.case-info {
  color: #555;
  font-size: 14px;
  margin-top: 12px;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-proposition {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 80px 20px;
  border-top: 4px solid #F4A261;
  border-bottom: 4px solid #2C5F8D;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================
   FEATURED SERVICES SECTION
   ============================================ */

.featured-services {
  background: #252525;
  padding: 80px 20px;
}

.featured-services h2 {
  text-align: center;
  margin-bottom: 60px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 20px;
}

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

/* ============================================
   CTA BANNER - INDUSTRIAL CALL TO ACTION
   ============================================ */

.cta-banner,
.cta-section,
.contact-cta {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #F4A261;
  border-bottom: 4px solid #F4A261;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner h2,
.cta-section h2,
.contact-cta h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.phone {
  font-size: 32px;
  font-weight: 700;
  color: #F4A261;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================
   PRODUCT FEATURES
   ============================================ */

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 32px;
  border: 2px solid #3a3a3a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-features .feature {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.product-features .feature img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(244, 162, 97, 0.3));
}

.product-features .feature p {
  color: #b0b0b0;
  font-size: 14px;
}

/* ============================================
   CUSTOMIZATION SECTION
   ============================================ */

.customization-section {
  background: linear-gradient(135deg, #1a3a5a 0%, #2C5F8D 100%);
  padding: 60px 40px;
  text-align: center;
  border: 3px solid #F4A261;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.customization-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.customization-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STORY & TEXT SECTIONS
   ============================================ */

.story,
.values,
.mission,
.inspiration-intro,
.showroom-details,
.business-contact {
  padding: 60px 20px;
  background: #252525;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

/* ============================================
   MISSION & VISION BOXES
   ============================================ */

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

.mission-box,
.vision-box {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  padding: 40px;
  border: 3px solid #F4A261;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.mission-box h2,
.vision-box h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.mission-box p,
.vision-box p {
  color: #e0e0e0;
  font-size: 16px;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */

.statistics {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4A261;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-card p {
  color: #b0b0b0;
  font-size: 16px;
}

/* ============================================
   SHOWROOM INFO
   ============================================ */

.showroom-info {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 60px 40px;
  text-align: center;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #F4A261;
  margin-top: 40px;
}

.showroom-info h2 {
  margin-bottom: 24px;
}

.showroom-info p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* ============================================
   B2B BENEFITS & PRICING TIERS
   ============================================ */

.b2b-benefits {
  background: #252525;
  padding: 80px 20px;
}

.pricing-tiers {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 80px 20px;
  text-align: center;
}

.pricing-tiers h2 {
  margin-bottom: 16px;
}

.pricing-tiers > p {
  color: #b0b0b0;
  font-size: 18px;
  margin-bottom: 60px;
}

.tier-card.featured {
  border: 3px solid #F4A261;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  transform: scale(1.05);
}

.tier-card ul {
  text-align: left;
  margin-top: 24px;
}

.tier-card ul li {
  color: #b0b0b0;
  padding: 8px 0;
  border-bottom: 1px solid #3a3a3a;
  position: relative;
  padding-left: 24px;
}

.tier-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
}

/* ============================================
   SERVICES LIST
   ============================================ */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 32px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
  color: #F4A261;
  margin-bottom: 12px;
}

/* ============================================
   STYLED SECTIONS (GALLERY)
   ============================================ */

.styled-sections {
  padding: 60px 20px;
  background: #252525;
}

.style-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #2C5F8D;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.style-section h3 {
  color: #F4A261;
  margin-bottom: 16px;
}

.products-used {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #3a3a3a;
}

.products-used strong {
  color: #F4A261;
}

/* ============================================
   CUSTOMER SPACES
   ============================================ */

.customer-spaces {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px;
}

.customer-spaces h2 {
  text-align: center;
  margin-bottom: 20px;
}

.customer-spaces > .container > p {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
}

.project-card h4 {
  color: #F4A261;
  margin-bottom: 12px;
}

/* ============================================
   STYLE GUIDE
   ============================================ */

.style-guide {
  background: #252525;
  padding: 80px 20px;
}

.style-guide h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-options {
  background: #252525;
  padding: 80px 20px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 60px;
}

.option-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #F4A261;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.contact-hours,
.contact-info {
  color: #b0b0b0;
  font-size: 14px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  padding: 80px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 40px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-note p {
  color: #b0b0b0;
  line-height: 1.6;
}

.form-note strong {
  color: #F4A261;
}

.form-note input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #F4A261;
}

.privacy-note {
  font-size: 14px;
  color: #888;
  margin-top: 16px;
}

.privacy-note a {
  color: #F4A261;
}

/* ============================================
   CONTACT METHODS
   ============================================ */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
}

.contact-methods p {
  color: #e0e0e0;
  font-size: 18px;
}

.contact-methods strong {
  color: #F4A261;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */

.confirmation-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 4px solid #F4A261;
}

.confirmation-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin: 0 auto 32px;
  width: 80px;
  height: 80px;
}

.success-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(244, 162, 97, 0.5));
}

.confirmation-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 24px;
  color: #F4A261;
  margin-bottom: 16px;
  font-weight: 600;
}

.confirmation-hero p {
  color: #e0e0e0;
  font-size: 18px;
}

/* ============================================
   NEXT STEPS
   ============================================ */

.next-steps {
  background: #252525;
  padding: 80px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 24px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #F4A261;
}

.step p {
  color: #b0b0b0;
  font-size: 16px;
}

.step strong {
  color: #F4A261;
  font-size: 24px;
  margin-right: 12px;
}

.additional-info {
  text-align: center;
  font-size: 16px;
  color: #b0b0b0;
}

/* ============================================
   EXPLORE MORE
   ============================================ */

.explore-more {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 20px;
}

.explore-more h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* ============================================
   CONTACT REMINDER
   ============================================ */

.contact-reminder {
  background: #252525;
  padding: 60px 20px;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 40px;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info p {
  color: #b0b0b0;
  font-size: 16px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  background: #252525;
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 20px 0 20px 40px;
}

.legal-content ul li {
  color: #b0b0b0;
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: -12px;
  color: #F4A261;
}

.legal-content a {
  color: #F4A261;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #f5b680;
}

/* ============================================
   FOOTER - INDUSTRIAL DESIGN
   ============================================ */

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #b0b0b0;
  padding: 60px 20px 20px;
  border-top: 4px solid #F4A261;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #333;
}

.footer-column {
  flex: 1 1 200px;
}

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

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

.footer-column ul li a {
  color: #b0b0b0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #F4A261;
  padding-left: 8px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #888;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 3px solid #F4A261;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-text a {
  color: #F4A261;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  color: #ffffff;
  border: 1px solid #3d7ab8;
}

#accept-cookies:hover {
  background: linear-gradient(135deg, #3d7ab8 0%, #2C5F8D 100%);
  transform: translateY(-2px);
}

#reject-cookies {
  background: transparent;
  color: #b0b0b0;
  border: 1px solid #555;
}

#reject-cookies:hover {
  background: #333;
  color: #e0e0e0;
}

#cookie-settings {
  background: transparent;
  color: #F4A261;
  border: 1px solid #F4A261;
}

#cookie-settings:hover {
  background: #F4A261;
  color: #1a1a1a;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

#cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 3px solid #F4A261;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F4A261;
  border: none;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #1a1a1a;
  border-left: 4px solid #F4A261;
}

.cookie-category h3 {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #2C5F8D;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background-color: #888;
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.cookie-modal-buttons button {
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-preferences {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a5a 100%);
  color: #ffffff;
  border: 1px solid #3d7ab8;
}

#save-preferences:hover {
  background: linear-gradient(135deg, #3d7ab8 0%, #2C5F8D 100%);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 16px 0;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  /* Card adjustments */
  .feature-card,
  .service-card,
  .benefit-card,
  .testimonial-card,
  .product-card,
  .value-card,
  .stat-card,
  .tier-card,
  .option-card,
  .tip-card,
  .project-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Mission/Vision boxes */
  .mission-box,
  .vision-box {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Product features */
  .product-features .feature {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* CTA buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a,
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Section padding */
  .section,
  .hero,
  .page-hero,
  .value-proposition,
  .featured-services,
  .benefits,
  .testimonials,
  .cta-banner,
  .products,
  .story,
  .values,
  .mission,
  .statistics,
  .b2b-benefits,
  .pricing-tiers,
  .styled-sections,
  .customer-spaces,
  .style-guide,
  .contact-options,
  .contact-form-section,
  .showroom-details,
  .business-contact,
  .confirmation-hero,
  .next-steps,
  .explore-more,
  .contact-reminder,
  .legal-content {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .discount {
    font-size: 24px;
  }
  
  .phone {
    font-size: 24px;
  }
  
  .product-features .feature {
    flex: 1 1 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

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

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

*:focus {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   END OF STYLES
   ============================================ */