/* ===================================
   GlowMoment - PROFESSIONAL CORPORATE CSS
   Professional blue/gray corporate aesthetic
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY - CORPORATE HIERARCHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A2332;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4A5568;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER - CORPORATE NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #3498DB;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  color: #2C3E50;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #E8F4F8;
  color: #3498DB;
}

/* ===================================
   MOBILE MENU - BURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  background-color: #3498DB;
  color: #FFFFFF;
  border-radius: 6px;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2980B9;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1A2332;
  z-index: 1100;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.mobile-nav a {
  padding: 16px 20px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(52, 152, 219, 0.2);
  padding-left: 28px;
}

/* ===================================
   HERO SECTION - CORPORATE BANNER
   =================================== */

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  color: #ECF0F1;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ===================================
   BUTTONS - PROFESSIONAL STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #3498DB;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  background-color: #2980B9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #3498DB;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

/* ===================================
   TRUST BADGES
   =================================== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badges span {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* ===================================
   FEATURES GRID - FLEXBOX LAYOUT
   =================================== */

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

.feature,
.value,
.benefit,
.signal,
.trust-grid p {
  flex: 1 1 100%;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3498DB;
  transition: all 0.3s ease;
}

.feature:hover,
.value:hover,
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature h3,
.value h3,
.benefit h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.feature p,
.value p,
.benefit p {
  color: #5A6C7D;
  font-size: 15px;
  line-height: 1.7;
}

/* ===================================
   PRODUCTS GRID - FLEXBOX CARDS
   =================================== */

.products-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.product-card,
.category-card {
  flex: 1 1 100%;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card h3,
.category-card h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card p,
.category-card p {
  color: #5A6C7D;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #3498DB;
  margin-top: 12px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials-grid,
.articles-grid,
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card,
.article-card,
.guide {
  flex: 1 1 100%;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #3498DB;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p,
.article-card p,
.guide p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.author {
  color: #5A6C7D;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

.author strong {
  color: #2C3E50;
}

.rating {
  color: #F39C12;
  font-size: 18px;
  margin-top: 8px;
}

.read-time {
  color: #7F8C8D;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

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

.statistics {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.statistics h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #3498DB;
  display: block;
}

.stat .label {
  font-size: 16px;
  color: #ECF0F1;
  display: block;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section,
.expert-cta {
  background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 0;
}

.cta-section h2,
.expert-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p,
.expert-cta p {
  color: #ECF0F1;
  font-size: 18px;
  margin-bottom: 24px;
}

/* ===================================
   PROMOTIONAL SECTIONS
   =================================== */

.promotional-banner {
  background-color: #FFF9E6;
  border: 2px solid #F39C12;
  border-radius: 8px;
  padding: 32px 20px;
  margin-bottom: 40px;
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.promo {
  flex: 1 1 250px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #F39C12;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.promo p {
  color: #2C3E50;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

/* ===================================
   SECTIONS WITH CONSISTENT SPACING
   =================================== */

.value-proposition,
.services-grid,
.product-categories,
.trust-signals,
.shopping-benefits,
.company-story,
.values,
.featured-articles,
.buying-guides,
.tips-section,
.contact-options,
.store-location,
.public-transport,
.business-info,
.legal-content,
.thank-you-content,
.order-confirmation,
.next-steps,
.support-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ===================================
   TEXT SECTIONS
   =================================== */

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

.text-section h2 {
  color: #2C3E50;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===================================
   TIPS LIST
   =================================== */

.tips-list {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tips-list p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 8px;
}

/* ===================================
   CONTACT & INFO SECTIONS
   =================================== */

.options-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.option,
.info-grid p {
  flex: 1 1 280px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #3498DB;
}

.option h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.option p {
  color: #5A6C7D;
  font-size: 15px;
  line-height: 1.7;
}

.location-info,
.transport-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.location-info h3 {
  color: #2C3E50;
  margin-bottom: 20px;
}

.location-info p,
.transport-info p {
  color: #4A5568;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===================================
   SUCCESS ICON
   =================================== */

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

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

.step {
  flex: 1 1 100%;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3498DB;
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  color: #3498DB;
  margin-bottom: 12px;
}

.step p {
  color: #5A6C7D;
  line-height: 1.7;
}

/* ===================================
   LEGAL NAVIGATION
   =================================== */

.legal-navigation {
  background-color: #F8F9FA;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.legal-navigation h3 {
  color: #2C3E50;
  margin-bottom: 20px;
  text-align: center;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.links a {
  padding: 12px 24px;
  background-color: #FFFFFF;
  color: #3498DB;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.links a:hover {
  background-color: #3498DB;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   FOOTER - CORPORATE STRUCTURE
   =================================== */

footer {
  background-color: #1A2332;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-column img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #3498DB;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  color: #BDC3C7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-column a {
  display: block;
  color: #BDC3C7;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #3498DB;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A2332;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: #ECF0F1;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #27AE60;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #229954;
}

.cookie-reject {
  background-color: #E74C3C;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background-color: #C0392B;
}

.cookie-settings {
  background-color: transparent;
  color: #3498DB;
  border: 2px solid #3498DB;
}

.cookie-settings:hover {
  background-color: #3498DB;
  color: #FFFFFF;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  color: #95A5A6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C3E50;
}

.cookie-modal h2 {
  color: #2C3E50;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #3498DB;
}

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

.cookie-category p {
  color: #5A6C7D;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #BDC3C7;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background-color: #27AE60;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

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

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    padding: 100px 20px;
  }

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

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .feature,
  .value,
  .benefit {
    flex: 1 1 45%;
  }

  .product-card,
  .category-card {
    flex: 1 1 45%;
  }

  .testimonial-card,
  .article-card,
  .guide {
    flex: 1 1 45%;
  }

  .step {
    flex: 1 1 45%;
  }

  .cta-buttons {
    justify-content: center;
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
  .feature,
  .value,
  .benefit {
    flex: 1 1 30%;
  }

  .product-card,
  .category-card {
    flex: 1 1 30%;
  }

  .testimonial-card,
  .article-card,
  .guide {
    flex: 1 1 30%;
  }

  .step {
    flex: 1 1 22%;
  }

  .stat {
    flex: 1 1 22%;
  }

  .option {
    flex: 1 1 30%;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
    color: #000000;
  }

  .container {
    max-width: 100%;
  }
}

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

:focus-visible {
  outline: 3px solid #3498DB;
  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 CSS
   =================================== */