/* ===================================
   MILD PEARL - ELEGANT CLASSIC DESIGN
   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;
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #1a252f;
}

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: 20px;
  color: #2C3E50;
}

a {
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #95A5A6;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  line-height: 1.6;
}

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

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

/* ===================================
   BUTTONS - ELEGANT CLASSIC STYLE
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2C3E50;
  color: #FAF8F5;
  border-color: #2C3E50;
}

.btn-primary:hover {
  background-color: #1a252f;
  border-color: #1a252f;
  color: #E8D5C4;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.2);
}

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

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.15);
}

.btn-link {
  padding: 8px 0;
  font-size: 16px;
  color: #2C3E50;
  border-bottom: 2px solid #E8D5C4;
  background: none;
  border-radius: 0;
}

.btn-link:hover {
  color: #95A5A6;
  border-bottom-color: #95A5A6;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  padding: 24px 0;
  border-bottom: 1px solid #E8D5C4;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #95A5A6;
  border-bottom-color: #E8D5C4;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #2C3E50;
  color: #FAF8F5;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(44, 62, 80, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E8D5C4;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #95A5A6;
  padding-left: 8px;
}

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

.hero {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EC 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 3px solid #E8D5C4;
  margin-bottom: 60px;
}

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

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

.hero-subtitle {
  font-size: 22px;
  color: #95A5A6;
  margin-bottom: 40px;
  font-style: italic;
}

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

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

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

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

.page-hero .subtitle {
  color: #E8D5C4;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 0;
}

/* ===================================
   SECTIONS - GENERAL LAYOUT
   =================================== */

.section,
.brand-statement,
.services-overview,
.why-choose,
.testimonials,
.cta-banner,
.location-info,
.story,
.values,
.approach,
.studio-info,
.services-intro,
.service-detail,
.portfolio-intro,
.portfolio-categories,
.featured-projects,
.workshops-intro,
.workshop-detail,
.workshop-benefits,
.gallery-intro,
.collection,
.print-specs,
.contact-intro,
.contact-details,
.consultation,
.privacy-note,
.thank-you-hero,
.thank-you-message,
.while-you-wait,
.home-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 20px;
  color: #95A5A6;
  font-style: italic;
}

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

.content-wrapper h2 {
  text-align: center;
  margin-bottom: 32px;
}

.content-wrapper p {
  margin-bottom: 24px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 24px;
}

/* ===================================
   BRAND STATEMENT
   =================================== */

.brand-statement {
  background-color: #FFFFFF;
  border-top: 3px solid #E8D5C4;
  border-bottom: 3px solid #E8D5C4;
  text-align: center;
}

.brand-statement h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.brand-statement p {
  font-size: 22px;
  color: #95A5A6;
  line-height: 1.8;
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 2px solid #E8D5C4;
  text-align: center;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  border-color: #2C3E50;
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.12);
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #1a252f;
}

.service-card p {
  font-size: 16px;
  color: #95A5A6;
  margin-bottom: 20px;
}

.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 24px;
}

/* ===================================
   REASONS & VALUES GRID
   =================================== */

.reasons-grid,
.values-grid,
.benefits-grid,
.specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.reason-card,
.value-card,
.benefit-card,
.spec-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8D5C4;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.reason-card:hover,
.value-card:hover,
.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  transform: translateY(-4px);
}

.reason-card img,
.value-card img,
.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  opacity: 0.8;
}

.reason-card h3,
.value-card h3,
.benefit-card h3,
.spec-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a252f;
}

.reason-card p,
.value-card p,
.benefit-card p,
.spec-item p {
  font-size: 16px;
  color: #95A5A6;
  line-height: 1.6;
}

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

.testimonials {
  background-color: #FFFFFF;
  border-top: 3px solid #E8D5C4;
  border-bottom: 3px solid #E8D5C4;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 560px;
  background-color: #FAF8F5;
  padding: 40px 32px;
  border-left: 4px solid #E8D5C4;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-left-color: #2C3E50;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a252f;
  margin-bottom: 8px;
}

.testimonial-card .service {
  font-size: 14px;
  color: #95A5A6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ===================================
   CTA BANNER & SECTIONS
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.cta-content h2 {
  color: #FAF8F5;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  color: #E8D5C4;
  font-size: 20px;
  margin-bottom: 40px;
}

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

.cta-buttons .btn-primary {
  background-color: #FAF8F5;
  color: #2C3E50;
  border-color: #FAF8F5;
}

.cta-buttons .btn-primary:hover {
  background-color: #E8D5C4;
  border-color: #E8D5C4;
  color: #1a252f;
}

.cta-buttons .btn-secondary {
  border-color: #FAF8F5;
  color: #FAF8F5;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FAF8F5;
  color: #2C3E50;
}

/* ===================================
   LOCATION INFO
   =================================== */

.location-info {
  background-color: #FFFFFF;
  border-top: 3px solid #E8D5C4;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.location-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.location-details {
  max-width: 500px;
  padding: 32px;
  background-color: #FAF8F5;
  border: 2px solid #E8D5C4;
}

.location-details h3 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 24px;
  color: #1a252f;
}

.location-details h3:first-of-type {
  margin-top: 0;
}

.location-details p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.location-details .note {
  font-size: 14px;
  font-style: italic;
  color: #95A5A6;
  margin-top: 16px;
}

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

.service-content,
.workshop-content,
.collection-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8D5C4;
}

.service-content h2,
.workshop-content h2,
.collection-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1a252f;
}

.service-content .tagline,
.workshop-content .level,
.collection-content .subtitle {
  font-size: 18px;
  font-style: italic;
  color: #95A5A6;
  margin-bottom: 24px;
}

.service-content .price,
.workshop-content .level,
.collection-content .price-range {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #2C3E50;
  margin: 24px 0;
}

.service-content h3,
.workshop-content h3,
.collection-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a252f;
}

.edition-info {
  font-size: 16px;
  color: #95A5A6;
  margin: 16px 0;
}

.highlight {
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  padding: 16px 24px;
  background-color: #E8D5C4;
  border-left: 4px solid #2C3E50;
  margin: 24px 0;
  display: block;
}

/* ===================================
   PORTFOLIO CATEGORIES
   =================================== */

.portfolio-categories {
  margin-bottom: 60px;
}

.category-card,
.project-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 2px solid #E8D5C4;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.category-card:hover,
.project-card:hover {
  border-color: #2C3E50;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
}

.category-card h3,
.project-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a252f;
}

.category-card p,
.project-card p {
  font-size: 16px;
  color: #95A5A6;
  margin-bottom: 16px;
}

.category-card .count {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin-top: 16px;
}

.project-card .category {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #95A5A6;
  margin-bottom: 12px;
}

/* ===================================
   CONTACT DETAILS
   =================================== */

.details-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.detail-block {
  max-width: 600px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8D5C4;
}

.detail-block h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #1a252f;
}

.detail-block h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.detail-block p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 16px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  color: #FAF8F5;
  font-size: 56px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: #E8D5C4;
  font-size: 22px;
  font-style: italic;
}

.thank-you-message {
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-message h2 {
  margin-bottom: 24px;
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 460px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border: 2px solid #E8D5C4;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  border-color: #2C3E50;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  transform: translateY(-4px);
}

.suggestion-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a252f;
}

.suggestion-card p {
  font-size: 16px;
  color: #95A5A6;
  margin-bottom: 20px;
}

.home-cta {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px 40px;
  border: 2px solid #E8D5C4;
}

.legal-content h1 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
  color: #1a252f;
}

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

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

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

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

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

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

footer {
  background-color: #2C3E50;
  color: #FAF8F5;
  padding: 60px 20px 32px;
  border-top: 4px solid #E8D5C4;
}

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

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

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #E8D5C4;
  font-weight: 600;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #FAF8F5;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #FAF8F5;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #E8D5C4;
  padding-left: 4px;
}

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

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

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 14px;
  color: #FAF8F5;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #E8D5C4;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FAF8F5;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #FAF8F5;
  margin-bottom: 0;
}

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

.cookie-consent-text a:hover {
  color: #FFFFFF;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-accept-all {
  background-color: #E8D5C4;
  color: #2C3E50;
  border-color: #E8D5C4;
}

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

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

.cookie-reject-all:hover {
  background-color: #FAF8F5;
  color: #2C3E50;
}

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

.cookie-settings-btn:hover {
  background-color: #E8D5C4;
  color: #2C3E50;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 10000;
  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;
  padding: 40px 32px;
  border: 3px solid #E8D5C4;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8D5C4;
}

.cookie-modal-header h2 {
  font-size: 28px;
  color: #1a252f;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #95A5A6;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C3E50;
  transform: rotate(90deg);
}

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

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

.cookie-category h3 {
  font-size: 20px;
  color: #2C3E50;
  margin: 0;
}

.cookie-category p {
  font-size: 15px;
  color: #95A5A6;
  margin: 0;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

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

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

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

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

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

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

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #E8D5C4;
}

.cookie-save-btn {
  padding: 12px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  background-color: #2C3E50;
  color: #FAF8F5;
  border: 2px solid #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-save-btn:hover {
  background-color: #1a252f;
  border-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

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

@media (max-width: 992px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .service-card,
  .reason-card,
  .value-card,
  .benefit-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 40px);
  }
}

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  header {
    padding: 16px 0;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 60px 16px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero .subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  .section,
  .brand-statement,
  .services-overview,
  .why-choose,
  .testimonials,
  .cta-banner,
  .location-info {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .service-card,
  .reason-card,
  .value-card,
  .benefit-card,
  .testimonial-card,
  .suggestion-card,
  .category-card,
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .service-card,
  .reason-card,
  .value-card,
  .benefit-card {
    padding: 32px 24px;
  }
  
  /* CTA */
  .cta-banner,
  .cta-section {
    padding: 60px 16px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-content p {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
  
  /* Footer */
  footer {
    padding: 40px 16px 24px;
  }
  
  .footer-grid {
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-legal {
    justify-content: center;
    gap: 16px;
  }
  
  /* Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-consent-buttons button {
    flex: 1 1 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-header h2 {
    font-size: 24px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-save-btn {
    width: 100%;
  }
  
  /* Legal Pages */
  .legal-content {
    padding: 32px 24px;
  }
  
  .legal-content h1 {
    font-size: 32px;
  }
  
  /* Thank You Page */
  .thank-you-hero {
    padding: 60px 16px;
  }
  
  .thank-you-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero h1,
  .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* ===================================
   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 slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #E8D5C4;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}