/* ============================================
   CRISP SYLLABUS - ELEGANT CLASSIC DESIGN
   Timeless Elegance with Refined Elements
   ============================================ */

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

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

body {
  font-family: 'Lora', 'Georgia', serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

/* TYPOGRAPHY - ELEGANT CLASSIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a2332;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

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

ul {
  list-style: none;
}

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

/* BUTTONS - ELEGANT CLASSIC STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #C4A57B;
  color: #ffffff;
  border-color: #C4A57B;
  box-shadow: 0 4px 12px rgba(196, 165, 123, 0.25);
}

.btn-primary:hover {
  background-color: #b69568;
  border-color: #b69568;
  box-shadow: 0 6px 20px rgba(196, 165, 123, 0.35);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #ffffff;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background-color: #2C3E50;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 999;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C4A57B;
  padding-left: 10px;
}

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8dcc4;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2C3E50;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
}

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5F0E8 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #C4A57B;
}

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

.hero h1 {
  font-size: 56px;
  color: #1a2332;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

.trust-badge {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section {
  padding: 80px 0;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-item {
  flex: 1 1 calc(50% - 40px);
  min-width: 250px;
  max-width: 500px;
  padding: 40px 30px;
  background-color: #FAF8F5;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: left;
}

.value-item:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.value-item h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.value-item p {
  font-size: 16px;
  color: #6b7280;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #FAF8F5;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 50px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 40px 30px;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  border-color: #C4A57B;
  box-shadow: 0 12px 32px rgba(196, 165, 123, 0.2);
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

/* PROCESS PREVIEW */
.process-preview {
  background-color: #ffffff;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 50px;
}

.process-step {
  flex: 1 1 calc(20% - 30px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background-color: #FAF8F5;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.process-step:hover {
  border-color: #C4A57B;
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #2C3E50;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: #6b7280;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5F0E8 100%);
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 40px 35px;
  border-radius: 4px;
  border: 2px solid #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

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

.client-name {
  font-size: 15px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 12px;
  font-style: normal;
}

.rating {
  color: #C4A57B;
  font-size: 18px;
  letter-spacing: 2px;
}

/* LOCATION HIGHLIGHT */
.location-highlight {
  background-color: #FAF8F5;
  text-align: center;
}

.service-areas {
  margin-top: 40px;
}

.service-areas p {
  font-size: 16px;
  margin-bottom: 12px;
}

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

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

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

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

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 40px;
  text-align: left;
}

.benefits-list li {
  font-size: 16px;
  color: #e8dcc4;
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C4A57B;
  font-weight: 700;
}

.contact-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(232, 220, 196, 0.3);
}

.contact-info p {
  font-size: 15px;
  color: #e8dcc4;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5F0E8 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid #C4A57B;
}

.breadcrumb {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
  text-align: left;
}

.breadcrumb a {
  color: #2C3E50;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #C4A57B;
}

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

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

/* SERVICES DETAILED */
.services-detailed {
  background-color: #ffffff;
}

.service-detail {
  margin-bottom: 60px;
  padding: 50px 40px;
  background-color: #FAF8F5;
  border-left: 4px solid #C4A57B;
  border-radius: 4px;
}

.service-detail h2 {
  font-size: 32px;
  color: #2C3E50;
  margin-bottom: 20px;
}

.service-detail h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 16px;
}

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

.service-detail li {
  font-size: 16px;
  color: #4a5568;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.service-detail li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #C4A57B;
  font-size: 20px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #C4A57B;
  margin: 30px 0 20px;
}

/* PACKAGE OPTIONS */
.package-options {
  background-color: #FAF8F5;
  text-align: center;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 50px;
}

.package-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 50px 35px;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.package-card.featured {
  border-color: #C4A57B;
  border-width: 3px;
  box-shadow: 0 12px 32px rgba(196, 165, 123, 0.2);
  transform: scale(1.05);
}

.package-card:hover {
  border-color: #C4A57B;
  box-shadow: 0 12px 32px rgba(196, 165, 123, 0.2);
  transform: translateY(-6px);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-6px);
}

.package-card h3 {
  font-size: 26px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.package-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

.package-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.package-card li {
  font-size: 15px;
  color: #4a5568;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C4A57B;
  font-weight: 700;
}

.package-note {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 20px;
}

/* CTA CONSULTATION */
.cta-consultation {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

.cta-consultation h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-consultation p {
  color: #e8dcc4;
  font-size: 18px;
  margin-bottom: 40px;
}

/* PORTFOLIO SHOWCASE */
.portfolio-showcase {
  background-color: #ffffff;
}

.project-featured {
  margin-bottom: 60px;
  padding: 50px 40px;
  background-color: #FAF8F5;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
}

.project-content h3 {
  font-size: 32px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.project-content p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.8;
}

.project-specs {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e8dcc4;
}

/* STYLE EXAMPLES */
.style-examples {
  background-color: #FAF8F5;
}

.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.style-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 40px 30px;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.style-card:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.style-card h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.style-card p {
  font-size: 15px;
  color: #6b7280;
}

/* CLIENT STORIES */
.client-stories {
  background-color: #ffffff;
}

.story-card {
  margin-bottom: 40px;
  padding: 40px;
  background-color: #FAF8F5;
  border-left: 4px solid #C4A57B;
  border-radius: 4px;
}

.story-card blockquote {
  font-size: 18px;
  color: #2C3E50;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

/* CTA INSPIRATION */
.cta-inspiration {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

.cta-inspiration h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-inspiration p {
  color: #e8dcc4;
  font-size: 18px;
  margin-bottom: 40px;
}

/* COMPANY STORY */
.company-story {
  background-color: #ffffff;
}

.company-story p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* MISSION VISION */
.mission-vision {
  background-color: #FAF8F5;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.mission-item {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  max-width: 550px;
  padding: 40px 35px;
  background-color: #ffffff;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
}

.mission-item h2 {
  font-size: 32px;
  color: #2C3E50;
  margin-bottom: 20px;
}

.mission-item p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
}

.values-grid {
  margin-top: 60px;
}

.values-grid h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.values-grid .value-item {
  background-color: #ffffff;
}

.values-grid .value-item h4 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 12px;
}

/* PHILOSOPHY */
.philosophy {
  background-color: #ffffff;
}

.philosophy > p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.principle-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  padding: 40px 30px;
  background-color: #FAF8F5;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.principle-item:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.principle-item h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.principle-item p {
  font-size: 15px;
  color: #6b7280;
}

/* LOCAL CONNECTION */
.local-connection {
  background-color: #FAF8F5;
}

.local-connection p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* CTA MEET */
.cta-meet {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

.cta-meet h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-meet p {
  color: #e8dcc4;
  font-size: 18px;
  margin-bottom: 40px;
}

/* PROCESS OVERVIEW */
.process-overview {
  background-color: #FAF8F5;
  padding: 40px 0;
}

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

/* PROCESS STEPS DETAILED */
.process-steps-detailed {
  background-color: #ffffff;
}

.process-step-detail {
  margin-bottom: 60px;
  padding: 50px 40px;
  background-color: #FAF8F5;
  border-left: 4px solid #C4A57B;
  border-radius: 4px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.step-header .step-number {
  margin-bottom: 0;
  flex-shrink: 0;
}

.step-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.duration {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

.step-content p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 24px;
}

.step-content h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 16px;
}

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

.step-content li {
  font-size: 16px;
  color: #4a5568;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.step-content li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #C4A57B;
  font-size: 20px;
}

/* COLLABORATION MODEL */
.collaboration-model {
  background-color: #FAF8F5;
}

.collaboration-model > p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.collaboration-points {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.collab-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.collab-item:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.collab-item h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.collab-item p {
  font-size: 15px;
  color: #6b7280;
}

/* CTA START */
.cta-start {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

.cta-start h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-start p {
  color: #e8dcc4;
  font-size: 18px;
  margin-bottom: 40px;
}

/* CONTACT OPTIONS */
.contact-options {
  background-color: #FAF8F5;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  background-color: #ffffff;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.contact-method:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.contact-method h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.contact-method p {
  font-size: 15px;
  color: #6b7280;
}

/* CONTACT DETAILS */
.contact-details {
  background-color: #ffffff;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.info-block {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.info-block h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 20px;
}

.info-block p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
}

.info-block a {
  color: #C4A57B;
  text-decoration: underline;
}

.info-block a:hover {
  color: #b69568;
}

.response-note,
.note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 12px;
}

/* STUDIO INFO */
.studio-info {
  background-color: #FAF8F5;
}

.studio-info > p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.studio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.feature-item {
  padding: 16px 24px;
  background-color: #ffffff;
  border: 1px solid #e8dcc4;
  border-radius: 4px;
}

.feature-item p {
  font-size: 15px;
  color: #4a5568;
  margin: 0;
}

.appointment-note {
  font-size: 16px;
  color: #2C3E50;
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
}

/* SERVICE AREA */
.service-area {
  background-color: #ffffff;
  text-align: center;
}

.primary-area {
  font-size: 22px;
  font-weight: 600;
  color: #2C3E50;
  margin: 30px 0;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.cities-grid span {
  padding: 12px 24px;
  background-color: #FAF8F5;
  border: 1px solid #e8dcc4;
  border-radius: 4px;
  font-size: 15px;
  color: #4a5568;
}

.extended-note {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  margin-top: 20px;
}

/* CONTACT FAQ */
.contact-faq {
  background-color: #FAF8F5;
}

.faq-list {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 40px;
  padding: 30px 35px;
  background-color: #ffffff;
  border-left: 4px solid #C4A57B;
  border-radius: 4px;
}

.faq-item h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.faq-item p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 0;
}

/* TRUST SIGNALS */
.trust-signals {
  background-color: #ffffff;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.trust-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
}

.trust-number {
  font-size: 48px;
  font-weight: 700;
  color: #C4A57B;
  margin-bottom: 12px;
}

.trust-item p {
  font-size: 16px;
  color: #4a5568;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2632 100%);
  text-align: center;
  color: #ffffff;
}

.cta-final h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-final p {
  color: #e8dcc4;
  font-size: 18px;
  margin-bottom: 40px;
}

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

/* LEGAL PAGE */
.legal-page {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.legal-content h2 {
  font-size: 28px;
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.legal-content li {
  font-size: 16px;
  color: #4a5568;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #C4A57B;
  font-size: 20px;
}

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

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

.last-updated,
.subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}

/* COOKIE TABLE */
.cookie-table {
  margin: 40px 0;
  border: 1px solid #e8dcc4;
  border-radius: 4px;
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e8dcc4;
}

.table-row:last-child {
  border-bottom: none;
}

.table-header,
.table-row > div {
  flex: 1 1 25%;
  min-width: 150px;
  padding: 16px;
  font-size: 14px;
}

.table-header {
  background-color: #FAF8F5;
  font-weight: 600;
  color: #2C3E50;
}

.table-row > div {
  color: #4a5568;
  background-color: #ffffff;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5F0E8 100%);
  padding: 100px 0;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 30px;
  background-color: #C4A57B;
  color: #ffffff;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 700;
}

.thank-you-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 20px;
  color: #6b7280;
}

/* CONFIRMATION DETAILS */
.confirmation-details {
  background-color: #ffffff;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.step-item {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 30px 25px;
}

.step-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #2C3E50;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: #6b7280;
}

.confirmation-note {
  font-size: 15px;
  color: #6b7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* MEANWHILE SECTION */
.meanwhile-section {
  background-color: #FAF8F5;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

.action-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 40px 30px;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.action-card:hover {
  border-color: #C4A57B;
  box-shadow: 0 8px 24px rgba(196, 165, 123, 0.15);
  transform: translateY(-4px);
}

.action-card h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.action-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* TESTIMONIAL HIGHLIGHT */
.testimonial-highlight {
  background-color: #ffffff;
}

/* BACK NAVIGATION */
.back-navigation {
  background-color: #FAF8F5;
}

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

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #e8dcc4;
  padding: 60px 0 30px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-section h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  color: #e8dcc4;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-section nav a {
  font-size: 14px;
  color: #e8dcc4;
  transition: color 0.3s ease;
}

.footer-section nav a:hover {
  color: #C4A57B;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(232, 220, 196, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #e8dcc4;
  margin: 0;
}

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

.legal-links a {
  font-size: 13px;
  color: #e8dcc4;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #C4A57B;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 auto;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: #C4A57B;
  color: #ffffff;
  border-color: #C4A57B;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

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

.cookie-btn-settings:hover {
  background-color: rgba(196, 165, 123, 0.1);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: 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%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: #2C3E50;
  border: 2px solid #e8dcc4;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.cookie-modal p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FAF8F5;
  border: 1px solid #e8dcc4;
  border-radius: 4px;
}

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

.category-header h3 {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 0;
}

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

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

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

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

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

  .main-nav {
    display: none;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 60px 0;
  }

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

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  section {
    padding: 50px 0;
  }

  .value-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .packages-grid,
  .styles-grid,
  .mission-content,
  .principles-grid,
  .contact-methods,
  .contact-info-grid,
  .next-steps,
  .action-cards {
    flex-direction: column;
  }

  .value-item,
  .service-card,
  .process-step,
  .testimonial-card,
  .package-card,
  .style-card,
  .mission-item,
  .principle-item,
  .contact-method,
  .info-block,
  .step-item,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .service-detail,
  .project-featured,
  .process-step-detail {
    padding: 30px 20px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 30px 20px;
  }

  .table-header,
  .table-row > div {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card,
  .style-card,
  .principle-item {
    flex: 1 1 calc(50% - 40px);
  }

  .process-step {
    flex: 1 1 calc(33.333% - 30px);
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #C4A57B;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}
.values-grid {
    display: flex;
    gap: 15px;
}