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

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

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

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

/* ===================================
   TYPOGRAPHY - WARM & FRIENDLY STYLE
   =================================== */

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

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 {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

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

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

/* ===================================
   HEADER & NAVIGATION - WARM FRIENDLY
   =================================== */

header {
  background-color: #F7F3EE;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #D4AF37;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #1A365D;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - WARM FRIENDLY DESIGN
   =================================== */

.mobile-menu-toggle {
  display: none;
  background-color: #D4AF37;
  border: none;
  font-size: 28px;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #F7F3EE 0%, #FFFFFF 100%);
  z-index: 2001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #1A365D;
  border: none;
  font-size: 32px;
  color: #FFFFFF;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(26, 54, 93, 0.3);
}

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

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

.mobile-nav a {
  color: #1A365D;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background-color: #D4AF37;
  color: #FFFFFF;
  transform: translateX(8px);
  border-color: #C49B2D;
}

/* ===================================
   HERO SECTION - WARM & INVITING
   =================================== */

.hero {
  background: linear-gradient(135deg, #F7F3EE 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.hero h1 {
  color: #1A365D;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}

/* ===================================
   BUTTONS - WARM FRIENDLY STYLE
   =================================== */

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

.btn-primary {
  background-color: #D4AF37;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: #C49B2D;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #1A365D;
  border-color: #1A365D;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.15);
}

.btn-secondary:hover {
  background-color: #1A365D;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */

.introduction {
  padding: 60px 20px;
  text-align: center;
}

.introduction h2 {
  color: #1A365D;
  margin-bottom: 24px;
}

.introduction > p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5568;
  line-height: 1.8;
}

.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-prop {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 30px;
  background-color: #F7F3EE;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-prop:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.value-prop h3 {
  color: #1A365D;
  font-size: 20px;
  margin-bottom: 0;
}

/* ===================================
   SERVICES GRID
   =================================== */

.services {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.services h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 40px;
}

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

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #F7F3EE;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.service-card h3 {
  color: #1A365D;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-card .price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
  margin-top: auto;
  margin-bottom: 0;
}

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

/* ===================================
   PROCESS STEPS - WARM DESIGN
   =================================== */

.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7F3EE 0%, #FFFFFF 100%);
  border-radius: 40px;
  margin: 40px 0;
}

.process h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.step h3 {
  color: #1A365D;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #D4AF37;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.step-info {
  font-size: 13px;
  color: #D4AF37;
  font-weight: 600;
  margin-top: 8px;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #F7F3EE;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #D4AF37;
}

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

.testimonial-card cite {
  color: #1A365D;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  display: block;
  margin-top: auto;
}

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

.page-hero {
  background: linear-gradient(135deg, #F7F3EE 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

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

.page-hero p {
  color: #4A5568;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   COLLECTIONS
   =================================== */

.collections {
  padding: 60px 20px;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.collection-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #F7F3EE;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.collection-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.collection-card p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.collection-card ul {
  margin: 20px 0;
}

.collection-card ul li {
  color: #4A5568;
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
}

.collection-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 16px;
}

.collection-card .price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}

/* ===================================
   QUALITY SECTION
   =================================== */

.quality {
  padding: 60px 20px;
  background-color: #F7F3EE;
  border-radius: 40px;
  margin: 40px 0;
}

.quality h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
}

.quality-list {
  max-width: 700px;
  margin: 0 auto;
}

.quality-list li {
  color: #2D3748;
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid #D4AF37;
}

.quality-list li:last-child {
  border-bottom: none;
}

.quality-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 24px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A365D 0%, #2D4A7C 100%);
  text-align: center;
  border-radius: 40px;
  margin: 40px 0;
}

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

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

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

.services-grid {
  padding: 40px 20px;
}

.service-detail {
  background-color: #F7F3EE;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.service-detail:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.service-detail h2 {
  color: #1A365D;
  margin-bottom: 16px;
}

.service-detail p {
  color: #4A5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-detail ul {
  margin: 20px 0;
}

.service-detail ul li {
  color: #4A5568;
  padding: 8px 0 8px 28px;
  position: relative;
}

.service-detail ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 16px;
}

.service-detail .price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
}

/* ===================================
   ADDITIONAL SERVICES
   =================================== */

.additional-services {
  padding: 40px 20px;
}

.additional-services h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
}

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

.service-item {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #F7F3EE;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

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

.service-item p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 8px;
}

.service-item .price {
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   STORY & PHILOSOPHY
   =================================== */

.story,
.philosophy {
  padding: 60px 20px;
}

.story h2,
.philosophy h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 24px;
}

.founding {
  text-align: center;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

.story p,
.philosophy p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #4A5568;
  line-height: 1.8;
}

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

.principle {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #F7F3EE;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.principle:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.principle h3 {
  color: #1A365D;
  margin-bottom: 12px;
}

.principle p {
  color: #4A5568;
  font-size: 15px;
}

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

.team {
  padding: 60px 20px;
  background-color: #F7F3EE;
  border-radius: 40px;
}

.team h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 16px;
}

.team > p {
  text-align: center;
  color: #4A5568;
  margin-bottom: 40px;
  font-size: 18px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.member {
  flex: 1 1 320px;
  max-width: 450px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.member:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.member h3 {
  color: #1A365D;
  margin-bottom: 8px;
}

.role {
  color: #D4AF37;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.member p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.7;
}

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

.contact-info {
  padding: 60px 20px;
}

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

.contact-method {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #F7F3EE;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.contact-method h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.contact-method p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-method .note {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.appointment {
  padding: 60px 20px;
  background-color: #F7F3EE;
  border-radius: 40px;
  margin: 40px 0;
}

.appointment h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 16px;
}

.appointment > p {
  text-align: center;
  color: #4A5568;
  margin-bottom: 32px;
  font-size: 18px;
}

.benefits {
  max-width: 600px;
  margin: 0 auto 32px;
}

.benefits li {
  color: #2D3748;
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.appointment > p:last-child {
  text-align: center;
  font-weight: 600;
  color: #1A365D;
}

.directions {
  padding: 60px 20px;
}

.directions h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 40px;
}

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

.direction-method {
  flex: 1 1 320px;
  max-width: 450px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #F7F3EE;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.direction-method:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.direction-method h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.direction-method ul li {
  color: #4A5568;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.6;
}

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

.legal-page {
  padding: 40px 20px;
}

.legal-page h1 {
  color: #1A365D;
  margin-bottom: 16px;
}

.subtitle {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 24px;
}

.last-updated {
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 32px;
  font-size: 14px;
}

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

.legal-content h2 {
  color: #1A365D;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: #1A365D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content ul li {
  color: #4A5568;
  padding: 8px 0;
  list-style-type: disc;
  line-height: 1.7;
}

.contact-info {
  background-color: #F7F3EE;
  padding: 20px;
  border-radius: 15px;
  margin-top: 32px;
  border-left: 4px solid #D4AF37;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F7F3EE 0%, #FFFFFF 100%);
  border-radius: 40px;
  margin-bottom: 40px;
}

.thank-you-content h1 {
  color: #1A365D;
  margin-bottom: 16px;
}

.confirmation-text {
  color: #D4AF37;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
}

.thank-you-content p {
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
}

.next-steps h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
}

.steps-list li {
  color: #2D3748;
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid #F7F3EE;
}

.steps-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.meanwhile {
  padding: 60px 20px;
  background-color: #F7F3EE;
  border-radius: 40px;
}

.meanwhile h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
}

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

.suggestion-card {
  flex: 1 1 320px;
  max-width: 400px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.suggestion-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.suggestion-card p {
  color: #4A5568;
  margin-bottom: 24px;
}

.contact-alternatives {
  padding: 60px 20px;
}

.contact-alternatives h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
}

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

.method {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #F7F3EE;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.method:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.method h3 {
  color: #1A365D;
  margin-bottom: 12px;
}

.method p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===================================
   FOOTER - WARM FRIENDLY DESIGN
   =================================== */

footer {
  background-color: #1A365D;
  color: #F7F3EE;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-radius: 40px 40px 0 0;
}

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

.footer-brand,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #F7F3EE;
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-contact p {
  color: #F7F3EE;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer-links a {
  color: #F7F3EE;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #F7F3EE;
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 24px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A365D 0%, #2D4A7C 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #D4AF37;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #F7F3EE;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background-color: #D4AF37;
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  background-color: #C49B2D;
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background-color: transparent;
  color: #F7F3EE;
  border: 2px solid #F7F3EE;
}

.cookie-btn.reject:hover {
  background-color: rgba(247, 243, 238, 0.1);
  border-color: #D4AF37;
}

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

.cookie-btn.settings:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: #1A365D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F7F3EE;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.cookie-category:hover {
  border-color: #D4AF37;
}

.cookie-category h3 {
  color: #1A365D;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

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

.toggle-switch.active {
  background-color: #D4AF37;
}

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

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Grids and Flexbox */
  .service-grid,
  .collection-grid,
  .testimonial-grid,
  .process-steps,
  .value-props,
  .principles,
  .team-members,
  .contact-grid,
  .service-list,
  .suggestion-grid,
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .collection-card,
  .testimonial-card,
  .step,
  .value-prop,
  .principle,
  .member,
  .contact-method,
  .service-item,
  .suggestion-card,
  .method {
    max-width: 100%;
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-grid,
  .collection-grid,
  .testimonial-grid {
    justify-content: center;
  }
  
  .service-card,
  .collection-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

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

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

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

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

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

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

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

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

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

.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;
}

/* Focus States */
a:focus,
button:focus,
.cookie-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

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