/* ============================================
   LUMINOUS DUNES - SCANDINAVIAN CLEAN DESIGN
   CSS Stylesheet for All Pages
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background-color: #FAFAFA;
  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;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   SCANDINAVIAN DESIGN VARIABLES
   ======================================== */
:root {
  --primary-color: #1B4B66;
  --secondary-color: #C9A961;
  --accent-color: #F4F1EA;
  --text-dark: #2D2D2D;
  --text-light: #6B6B6B;
  --background-light: #FAFAFA;
  --white: #FFFFFF;
  --border-light: #E5E5E5;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY - SCANDINAVIAN STYLE
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ========================================
   HEADER - CLEAN & MINIMAL
   ======================================== */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

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

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

/* ========================================
   MOBILE MENU - SCANDINAVIAN STYLE
   ======================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 200;
}

.mobile-menu-toggle:hover {
  background-color: var(--accent-color);
  border-color: var(--secondary-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  margin-bottom: 32px;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  color: var(--primary-color);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-left-color: var(--secondary-color);
  background-color: var(--accent-color);
}

/* ========================================
   BUTTONS - SCANDINAVIAN MINIMALISM
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: #153D54;
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ========================================
   HERO SECTION - CLEAN & SPACIOUS
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
  padding: 80px 24px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
}

.badge-text {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* ========================================
   PAGE HERO - INTERIOR PAGES
   ======================================== */
.page-hero {
  background-color: var(--accent-color);
  padding: 48px 24px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--primary-color);
  margin-bottom: 16px;
  max-width: 800px;
}

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

.breadcrumbs {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--primary-color);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ========================================
   CARD LAYOUTS - FLEXBOX ONLY
   ======================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card,
.service-card,
.testimonial-card,
.post-card,
.action-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card:hover,
.service-card:hover,
.post-card:hover,
.action-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.benefit-card img,
.service-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.benefit-card h3,
.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: 60px 24px;
  background-color: var(--white);
}

.benefits h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 48px;
}

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

.benefits-grid .benefit-card {
  flex: 1 1 280px;
  max-width: 300px;
}

/* ========================================
   SERVICES PREVIEW & DETAIL
   ======================================== */
.services-preview,
.services-detail {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.services-grid .service-card {
  flex: 1 1 320px;
  max-width: 380px;
}

.service-detail-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}

.service-detail-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.service-detail-card h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detail-card h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-detail-card ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.service-detail-card li {
  margin-bottom: 12px;
  color: var(--text-light);
}

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

/* ========================================
   PROCESS STEPS - VERTICAL TIMELINE
   ======================================== */
.process {
  padding: 60px 24px;
  background-color: var(--white);
}

.process h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background-color: var(--accent-color);
  border-radius: 8px;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.step p {
  margin-bottom: 0;
}

/* ========================================
   PROCESS DETAIL STEPS
   ======================================== */
.process-steps-detail {
  max-width: 800px;
  margin: 0 auto;
}

.step-detail {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.step-header .step-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
}

.step-duration {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.step-detail h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.step-detail h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-detail ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.step-detail li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* ========================================
   STATISTICS & SOCIAL PROOF
   ======================================== */
.social-proof,
.statistics {
  padding: 60px 24px;
  background-color: var(--primary-color);
  color: var(--white);
}

.social-proof h2,
.statistics h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  opacity: 0.9;
}

/* ========================================
   TESTIMONIALS - CLEAN CARDS
   ======================================== */
.testimonials {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.testimonials h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0;
}

.trust-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
}

.score-label {
  font-size: 14px;
  color: var(--text-light);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 60px 24px;
  background-color: var(--white);
}

.faq h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #153D54 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--white);
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.cta-section .btn-primary:hover {
  background-color: #B89651;
  transform: translateY(-2px);
}

.cta-section .btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.cta-section .btn-secondary:hover {
  background-color: transparent;
  color: var(--white);
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */
.calculator-main {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.calculator-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.calculator-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 32px;
  text-align: center;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.calc-input {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 75, 102, 0.1);
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.calc-button {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

.calc-results {
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
}

.calc-results h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 8px;
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  font-size: 14px;
  color: var(--text-light);
}

.result-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.calc-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
  font-style: italic;
}

/* ========================================
   BLOG SECTIONS
   ======================================== */
.featured-post {
  padding: 60px 24px;
  background-color: var(--white);
}

.featured-post-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 40px;
  border-left: 4px solid var(--secondary-color);
}

.post-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-post-card h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
  margin-bottom: 24px;
}

.blog-filters {
  padding: 40px 24px;
  background-color: var(--background-light);
}

.filters-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background-color: var(--white);
  font-size: 14px;
  cursor: pointer;
}

.search-box {
  flex: 1 1 300px;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.blog-grid {
  padding: 60px 24px;
  background-color: var(--white);
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.post-card {
  flex: 1 1 320px;
  max-width: 380px;
  cursor: pointer;
}

.post-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 12px;
}

.newsletter-signup {
  padding: 60px 24px;
  background-color: var(--accent-color);
}

.newsletter-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  justify-content: center;
}

.newsletter-input {
  flex: 1 1 300px;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 16px;
}

.newsletter-privacy {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

.newsletter-privacy a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-methods {
  padding: 60px 24px;
  background-color: var(--white);
}

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

.contact-method {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method img {
  width: 56px;
  height: 56px;
}

.contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-method a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-method a:hover {
  text-decoration: underline;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 32px;
}

.contact-form-section {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.contact-form-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  margin-bottom: 32px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: #FFF9E6;
  border-left: 4px solid var(--secondary-color);
  padding: 16px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.form-note p {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-note code {
  background-color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: var(--primary-color);
}

.form-fields-demo {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition-smooth);
  background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 75, 102, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.next-steps {
  padding: 60px 24px;
  background-color: var(--white);
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--accent-color);
  border-radius: 8px;
}

.step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
}

.immediate-actions {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.actions-grid .action-card {
  flex: 1 1 250px;
  max-width: 280px;
}

.testimonials-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-mini {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.testimonial-mini p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.testimonial-mini span {
  font-size: 14px;
  color: var(--text-light);
}

.rating-display {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
}

.rating-label {
  font-size: 14px;
  color: var(--text-light);
}

.navigation-helper {
  padding: 60px 24px;
  background-color: var(--white);
}

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

.nav-link-button {
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-link-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  padding: 60px 24px;
  background-color: var(--white);
}

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

.text-section h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 16px;
}

.text-section h3 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.text-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-settings {
  padding: 60px 24px;
  background-color: var(--accent-color);
}

.cookie-toggles {
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-item {
  background-color: var(--white);
  padding: 16px;
  border-radius: 4px;
}

.toggle-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-dark);
}

.cookie-toggle {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ========================================
   STORY & ABOUT SECTIONS
   ======================================== */
.story,
.approach,
.credentials {
  padding: 60px 24px;
  background-color: var(--white);
}

.story h2,
.approach h2,
.credentials h2 {
  color: var(--primary-color);
  margin-bottom: 32px;
}

.values-list {
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
}

.values-list h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.values-list ul {
  margin-left: 24px;
}

.values-list li {
  margin-bottom: 12px;
  color: var(--text-light);
}

.credentials-grid,
.approach-grid,
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.credential-card,
.approach-item,
.guarantee-item {
  flex: 1 1 280px;
  max-width: 300px;
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid var(--secondary-color);
}

.credential-card h3,
.approach-item h3,
.guarantee-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.office-info {
  padding: 60px 24px;
  background-color: var(--background-light);
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.office-detail-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.office-detail-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.appointment-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 32px;
}

.trust-signals {
  padding: 60px 24px;
  background-color: var(--white);
}

.trust-signals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.trust-signal {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
}

.trust-signal h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* ========================================
   FOOTER - SCANDINAVIAN SIMPLICITY
   ======================================== */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 24px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 300px;
}

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

.footer-column h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column p {
  color: var(--white);
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-nav a {
  color: var(--white);
  opacity: 0.8;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

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

.footer-bottom p {
  color: var(--white);
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-dark);
}

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.cookie-modal-close:hover {
  background-color: var(--accent-color);
}

.cookie-category {
  background-color: var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.cookie-toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-light);
  transition: var(--transition-smooth);
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: var(--transition-smooth);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--secondary-color);
}

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

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

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

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .hero {
    padding: 120px 24px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section {
    padding: 60px 40px;
  }

  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat {
    flex: 1 1 calc(33.333% - 32px);
  }

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

  .post-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

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

  .post-card {
    flex: 1 1 calc(33.333% - 24px);
  }

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

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

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

.hidden {
  display: none;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .header-cta,
  .cta-section,
  .newsletter-signup {
    display: none;
  }

  body {
    background-color: var(--white);
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

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

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

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

/* ========================================
   END OF STYLESHEET
   ======================================== */
