/* ============================================
   BrightDoor Spire - Professional Corporate CSS
   European Style Interior Design
   ============================================ */

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

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

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

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F5D;
  margin-bottom: 16px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #2C5F5D;
}

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

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

/* ============================================
   HEADER STYLES
   ============================================ */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(44, 95, 93, 0.08);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #2C5F5D;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #D4AF87;
  background-color: #F4E8D8;
}

.header-cta {
  display: none;
}

/* ============================================
   MOBILE MENU (HAMBURGER)
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #2C5F5D;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #1F4644;
}

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

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

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background-color 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(212, 175, 135, 0.2);
}

/* ============================================
   BUTTONS
   ============================================ */

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

.btn-primary {
  background-color: #2C5F5D;
  color: #FFFFFF;
  border-color: #2C5F5D;
}

.btn-primary:hover {
  background-color: #1F4644;
  border-color: #1F4644;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F5D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2C5F5D 0%, #1F4644 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: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #F4E8D8;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.hero-cta .btn-primary {
  background-color: #D4AF87;
  border-color: #D4AF87;
  color: #2C5F5D;
}

.hero-cta .btn-primary:hover {
  background-color: #C29D73;
  border-color: #C29D73;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.hero-cta .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C5F5D;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2C5F5D 0%, #1F4644 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #F4E8D8;
}

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

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

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

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

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

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   CARD LAYOUTS (FLEXBOX ONLY)
   ============================================ */

.benefits-grid,
.services-grid,
.collections-grid,
.values-grid,
.team-grid,
.contact-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.collection-card,
.value-card,
.team-member,
.contact-method,
.explore-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 100%;
  box-shadow: 0 2px 8px rgba(44, 95, 93, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.collection-card:hover,
.value-card:hover,
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 93, 0.12);
}

.benefit-card h3,
.service-card h3,
.collection-card h3,
.value-card h3,
.explore-card h3 {
  color: #2C5F5D;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.collection-card p,
.value-card p,
.explore-card p {
  color: #5A6C7D;
  line-height: 1.6;
}

.price {
  color: #D4AF87;
  font-weight: 700;
  font-size: 18px;
  margin-top: 12px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

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

.step {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background-color: #F4E8D8;
  border-radius: 8px;
  margin-bottom: 20px;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF87;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.step h3 {
  color: #2C5F5D;
  margin-bottom: 8px;
}

.step p {
  color: #5A6C7D;
}

/* ============================================
   SERVICE DETAIL CARDS
   ============================================ */

.service-card-large,
.collection-card-large,
.project-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(44, 95, 93, 0.08);
}

.service-intro,
.tagline {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 24px;
  font-style: italic;
}

.price-highlight {
  font-size: 28px;
  color: #D4AF87;
  font-weight: 700;
  margin: 24px 0;
}

.service-card-large h3,
.collection-card-large h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-card-large ul,
.collection-card-large ul {
  margin-bottom: 32px;
  padding-left: 20px;
}

.service-card-large li,
.collection-card-large li {
  margin-bottom: 12px;
  color: #5A6C7D;
  line-height: 1.6;
}

/* ============================================
   PROJECT SHOWCASE
   ============================================ */

.project-meta {
  font-size: 14px;
  color: #D4AF87;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

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

.testimonial-card {
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF87;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 100%;
  box-shadow: 0 2px 8px rgba(44, 95, 93, 0.08);
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

.testimonial-card .author strong {
  color: #2C5F5D;
  font-style: normal;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #2C5F5D 0%, #1F4644 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
}

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

.cta-banner .btn-primary {
  background-color: #D4AF87;
  border-color: #D4AF87;
  color: #2C5F5D;
}

.cta-banner .btn-primary:hover {
  background-color: #C29D73;
  border-color: #C29D73;
}

.trust-badge {
  font-size: 14px;
  color: #F4E8D8;
  margin-top: 16px;
  font-style: italic;
}

/* ============================================
   TEAM SECTION
   ============================================ */

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

.team-member .role {
  color: #D4AF87;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.contact-method h3 {
  margin-bottom: 16px;
}

.showroom-details {
  background-color: #F4E8D8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.showroom-details h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.showroom-details ul {
  padding-left: 20px;
}

.showroom-details li {
  margin-bottom: 8px;
  color: #5A6C7D;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.team-contact {
  flex: 1 1 100%;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.team-contact .role {
  color: #D4AF87;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.map-section {
  background-color: #F9FAFB;
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2C5F5D;
}

.legal-content p,
.legal-content li {
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

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

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

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

.checkmark {
  width: 80px;
  height: 80px;
  background-color: #D4AF87;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
}

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

.confirmation-message {
  font-size: 20px;
  color: #F4E8D8;
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.next-steps,
.explore-more,
.social-follow,
.contact-alternative {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.next-steps ol {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 20px;
}

.next-steps li {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #2C3E50;
}

.note {
  background-color: #F4E8D8;
  padding: 16px;
  border-left: 4px solid #D4AF87;
  border-radius: 4px;
  margin-top: 24px;
  font-size: 14px;
  color: #5A6C7D;
}

.social-follow ul {
  max-width: 700px;
  margin: 24px auto;
  padding-left: 20px;
}

.social-follow li {
  margin-bottom: 12px;
  color: #2C3E50;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #2C5F5D;
  color: #FFFFFF;
  padding: 60px 20px 24px;
}

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

.footer-column {
  flex: 1 1 100%;
  min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
  color: #F4E8D8;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #D4AF87;
}

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

.footer-nav a {
  padding: 4px 0;
  transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F5D;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #D4AF87;
  color: #2C5F5D;
  border-color: #D4AF87;
}

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

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

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #F4E8D8;
  border-color: #F4E8D8;
}

.cookie-settings:hover {
  background-color: rgba(244, 232, 216, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal h2 {
  color: #2C5F5D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

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

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

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

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

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

input:checked + .cookie-slider {
  background-color: #2C5F5D;
}

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

.cookie-slider.disabled {
  background-color: #D4AF87;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 120px;
}

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

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

  h2 {
    font-size: 42px;
  }

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

  .page-hero h1 {
    font-size: 48px;
  }

  .hero-cta,
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .benefit-card,
  .service-card,
  .collection-card,
  .value-card,
  .explore-card,
  .step,
  .testimonial-card,
  .team-contact {
    flex: 1 1 calc(50% - 12px);
  }

  .team-member,
  .contact-method {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-column {
    flex: 1 1 calc(25% - 24px);
  }

  .cookie-banner-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}

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

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  .header-cta {
    display: block;
  }

  .benefit-card,
  .value-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .service-card,
  .collection-card,
  .explore-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .step {
    flex: 1 1 calc(25% - 18px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .cta-group {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

button:focus,
a:focus {
  outline: 2px solid #D4AF87;
  outline-offset: 2px;
}

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

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

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }
}