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

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

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

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

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

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

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;
  line-height: 1.7;
}

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

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   BUTTONS - WARM & INVITING
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #C4A03C);
  color: #FFFFFF;
  border-color: #D4AF37;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C4A03C, #B49036);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

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

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

.btn-link {
  background: transparent;
  color: #8B7355;
  border: none;
  box-shadow: none;
  padding: 8px 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-link:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

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

header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
}

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

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

/* ===================================
   MOBILE MENU - WARM SLIDE-IN
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D4AF37, #C4A03C);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F0 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #2C3E50;
  border: none;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  transition: all 0.3s ease;
}

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

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

.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFD5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2C3E50;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

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

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

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

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

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

.benefit-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.benefit-card h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #2C3E50;
  font-size: 15px;
  margin-bottom: 0;
}

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

/* ===================================
   SERVICES OVERVIEW
   =================================== */

.services-overview {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.service-card {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 28px 24px;
  border-radius: 20px;
  border: 2px solid #FFEFD5;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.service-card p {
  color: #8B7355;
  font-size: 15px;
  margin-bottom: 16px;
}

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

/* ===================================
   PROCESS PREVIEW
   =================================== */

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #C4A03C);
  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 4px 12px rgba(212, 175, 55, 0.3);
}

.step h3 {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS - READABLE & WARM
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFD5 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 500px;
  margin-bottom: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #2C3E50;
}

.testimonial-author span {
  font-size: 14px;
  color: #8B7355;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  margin-top: 24px;
}

.rating-display {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  margin-top: 24px;
}

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

.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

.contact-info {
  margin-top: 40px;
  font-size: 15px;
  color: #FFEFD5;
}

.contact-info p {
  margin-bottom: 8px;
}

/* ===================================
   FOOTER - WARM & FRIENDLY
   =================================== */

footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  color: #FFEFD5;
  margin-bottom: 8px;
}

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

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

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 239, 213, 0.2);
  font-size: 14px;
  color: #FFEFD5;
}

/* ===================================
   PAGE HERO (Internal Pages)
   =================================== */

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

.breadcrumb {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #8B7355;
  transition: color 0.3s ease;
}

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

/* ===================================
   COMPANY STORY & MILESTONES
   =================================== */

.company-story {
  padding: 60px 20px;
}

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

.milestone {
  background-color: #FFFFFF;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  margin-bottom: 20px;
}

.milestone h3 {
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 8px;
}

.milestone p {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 0;
}

/* ===================================
   MISSION & VISION
   =================================== */

.mission-vision {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

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

.mission-item {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 32px 24px;
  border-radius: 20px;
  border: 2px solid #FFEFD5;
  flex: 1 1 400px;
  max-width: 500px;
  margin-bottom: 20px;
}

.mission-item h3 {
  color: #D4AF37;
  margin-bottom: 12px;
}

.values {
  margin-top: 40px;
  padding: 32px;
  background-color: #FFF9F0;
  border-radius: 20px;
}

.values h3 {
  text-align: center;
  margin-bottom: 24px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.values li {
  font-size: 16px;
  color: #2C3E50;
  padding-left: 24px;
  position: relative;
}

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

/* ===================================
   TEAM & SUSTAINABILITY
   =================================== */

.team, .sustainability {
  padding: 60px 20px;
  text-align: center;
}

.certifications {
  margin-top: 32px;
  padding: 24px;
  background-color: #FFF9F0;
  border-radius: 20px;
  display: inline-block;
}

.certifications p {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 0;
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */

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

.quality-promise {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quality-promise span {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  padding: 10px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

.service-number {
  font-size: 80px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.1);
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.service-tagline {
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 24px;
  font-style: italic;
}

.service-detail h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.service-detail li {
  margin-bottom: 12px;
  color: #2C3E50;
  position: relative;
  padding-left: 24px;
}

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

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

.consultation-cta {
  background: linear-gradient(135deg, #D4AF37 0%, #C4A03C 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin-bottom: 60px;
}

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

.consultation-cta p {
  font-size: 18px;
  margin-bottom: 24px;
}

.consultation-cta ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 32px;
  text-align: left;
}

.consultation-cta li {
  padding-left: 24px;
  position: relative;
}

.consultation-cta li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ===================================
   PORTFOLIO / GALLERY
   =================================== */

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

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 24px 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 200px;
  max-width: 250px;
}

.stat strong {
  font-size: 36px;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.stat span {
  font-size: 14px;
  color: #8B7355;
}

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

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

.project-card {
  background-color: #FFFFFF;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 500px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.project-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.project-card p {
  color: #8B7355;
  margin-bottom: 12px;
}

.project-details {
  font-size: 13px;
  color: #8B7355;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #FFEFD5;
}

.testimonials-section {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFD5 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

/* ===================================
   PROCESS PAGE
   =================================== */

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

.timeline-info {
  margin-top: 32px;
  padding: 24px;
  background-color: #FFF9F0;
  border-radius: 20px;
  display: inline-block;
}

.timeline-info p {
  margin-bottom: 8px;
  color: #2C3E50;
}

.process-step {
  padding: 60px 20px;
  margin-bottom: 40px;
  border-left: 4px solid #D4AF37;
  padding-left: 40px;
  position: relative;
}

.step-tagline {
  font-size: 18px;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 24px;
}

.step-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 20px;
  background-color: #FFF9F0;
  border-radius: 16px;
}

.step-details p {
  margin-bottom: 0;
  font-size: 15px;
  color: #2C3E50;
}

.deliverable {
  margin-top: 24px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #D4AF37;
}

.faq-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #FFF9F0;
  border-radius: 16px;
  border-left: 4px solid #D4AF37;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #8B7355;
  margin-bottom: 0;
}

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

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

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

.contact-option {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-option h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

.contact-form-section {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.form-note {
  max-width: 700px;
  margin: 24px auto 40px;
  padding: 20px;
  background-color: #FFEFD5;
  border-radius: 16px;
  border-left: 4px solid #D4AF37;
}

.form-note p {
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 8px;
}

.form-note a {
  color: #D4AF37;
  text-decoration: underline;
}

.form-fields-display {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #FFEFD5;
}

.field-group label {
  display: block;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 15px;
}

.field-group p {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 0;
}

.submit-info {
  text-align: center;
  padding: 24px;
  background-color: #D4AF37;
  color: #FFFFFF;
  border-radius: 16px;
  margin-top: 8px;
}

.submit-info p {
  margin-bottom: 0;
  font-weight: 600;
}

.showroom-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.showroom-details {
  max-width: 700px;
  margin: 32px auto 0;
}

.showroom-details h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.showroom-details ul {
  margin: 16px 0;
  padding-left: 24px;
}

.showroom-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.showroom-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
}

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

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

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

.legal-update {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #D4AF37;
  border-radius: 50%;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.thank-you-hero .hero-subtitle {
  color: #FFFFFF;
}

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

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

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-top: 24px;
}

.confirmation-details {
  background-color: #FFF9F0;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.while-you-wait {
  padding: 60px 20px;
}

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

.action-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  margin-bottom: 20px;
}

.action-card h3 {
  margin-bottom: 16px;
}

.preparation-tips {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFD5 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.preparation-tips h2 {
  text-align: center;
  margin-bottom: 32px;
}

.preparation-tips ul {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preparation-tips li {
  padding-left: 32px;
  position: relative;
}

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

.testimonials-highlight {
  padding: 60px 20px;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-message, .quick-links {
  padding: 60px 20px;
  text-align: center;
}

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

.link-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 20px;
}

.link-card h3 {
  margin-bottom: 12px;
}

.link-card p {
  margin-bottom: 20px;
}

/* ===================================
   CTA SECTION (General)
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin-bottom: 60px;
}

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

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

.address-info {
  margin-top: 24px;
  font-size: 15px;
  color: #FFEFD5;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: #FFEFD5;
}

.cookie-text p {
  margin-bottom: 8px;
}

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

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

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

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

.cookie-btn-accept:hover {
  background-color: #C4A03C;
  transform: scale(1.05);
}

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

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

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

.cookie-btn-settings:hover {
  background-color: rgba(212, 175, 55, 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: 1999;
  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;
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  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;
}

.cookie-modal-header h2 {
  color: #2C3E50;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFF9F0;
  border-radius: 16px;
  border-left: 4px solid #D4AF37;
}

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

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

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

.cookie-toggle.disabled {
  background-color: #CCC;
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  /* Stack flexbox items vertically */
  .hero-cta {
    flex-direction: column;
  }

  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .contact-grid,
  .stats-grid,
  .projects-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .contact-option,
  .project-card {
    max-width: 100%;
  }

  /* Footer stacking */
  .footer-content {
    flex-direction: column;
  }

  /* Reduce padding on mobile */
  .section,
  .hero,
  .page-hero,
  .services-overview,
  .cta-banner,
  .testimonials {
    padding: 40px 16px;
  }

  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .services-grid .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .benefits-grid .benefit-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* ===================================
   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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations */
.hero-content,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

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

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

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