/* ===================================
   CYNIC HOME - WARM & FRIENDLY DESIGN
   Modern Interior Design Website
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF9F5;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Warm & Friendly Aesthetic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F4F;
  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;
  font-size: 16px;
  color: #555;
}

a {
  color: #D4A574;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2C5F4F;
}

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

li {
  margin-bottom: 8px;
  color: #555;
}

blockquote {
  border-left: 4px solid #D4A574;
  padding: 20px 24px;
  margin: 32px 0;
  background-color: #FFF;
  border-radius: 8px;
  font-style: italic;
  font-size: 18px;
  color: #2C5F4F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

strong {
  font-weight: 600;
  color: #2C5F4F;
}

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

/* HEADER STYLES - Warm & Welcoming */
header {
  background-color: #FFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C5F4F;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #D4A574;
}

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

/* MOBILE MENU - Smooth & Friendly */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #2C5F4F;
  color: #FFF;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F4F 0%, #3a7a65 100%);
  z-index: 1001;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255,255,255,0.2);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  background-color: #D4A574;
  transform: translateX(8px);
}

/* HERO SECTION - Warm & Inviting */
.hero {
  background: linear-gradient(135deg, #F4EBE1 0%, #FFF9F5 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* BUTTONS - Rounded & Friendly */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #2C5F4F;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.btn-primary:hover {
  background-color: #3a7a65;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 79, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F4F;
  border: 2px solid #2C5F4F;
}

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

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

/* SECTIONS - Consistent Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* CARD LAYOUTS - Flexbox Only */
.services-grid,
.features-grid,
.steps-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.expertise-grid,
.categories-grid,
.styles-grid,
.materials-grid,
.trends-grid,
.projects-grid,
.tips-list,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* SERVICE CARDS - Warm & Welcoming */
.service-card,
.feature,
.step,
.value-card,
.team-member,
.expertise-item,
.category-card,
.style-card,
.material,
.trend-card,
.project-card,
.tip-item,
.contact-item {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.category-card:hover,
.style-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.15);
}

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

.service-card p {
  color: #555;
  flex-grow: 1;
}

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

.service-card .link,
.project-card .link {
  color: #2C5F4F;
  font-weight: 600;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .link:hover {
  color: #D4A574;
}

/* TESTIMONIAL CARDS - High Contrast for Readability */
.testimonial-card {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex: 1 1 400px;
  max-width: 550px;
  margin-bottom: 20px;
  border-left: 4px solid #D4A574;
}

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

.testimonial-card .author {
  color: #2C5F4F;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
}

/* STEP NUMBERS - Friendly Circles */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4A574 0%, #c99866 100%);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* STATS - Clean Display */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  padding: 40px 20px;
  background-color: #FFF;
  border-radius: 16px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4A574;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* TAGS - Soft & Rounded */
.tag {
  display: inline-block;
  background-color: #F4EBE1;
  color: #2C5F4F;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 4px;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: #D4A574;
  color: #FFF;
}

.subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

/* TEXT-IMAGE SECTIONS - Proper Alignment */
.text-section,
.story,
.mission-values,
.team,
.expertise,
.collections-intro,
.services-overview,
.inspiration-categories,
.trends-section,
.tips-guides,
.before-after,
.consultation-booking,
.faq-contact,
.showroom-info {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 400px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, #F4EBE1 0%, #FFF9F5 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.features-grid .feature {
  text-align: center;
  padding: 24px;
}

.feature h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.feature p {
  color: #555;
}

/* PROCESS SECTION */
.process {
  background-color: #FFF;
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

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

.process-step {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 24px;
  background-color: #F4EBE1;
  border-radius: 12px;
  text-align: center;
}

/* CTA SECTIONS - Prominent & Friendly */
.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #3a7a65 100%);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0;
}

.cta-content h2 {
  color: #FFF;
  margin-bottom: 16px;
}

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

.cta-content .btn-primary {
  background-color: #D4A574;
  color: #FFF;
}

.cta-content .btn-primary:hover {
  background-color: #c99866;
}

.contact-info {
  color: #F4EBE1;
  margin-top: 24px;
  font-size: 16px;
}

/* FAQ SECTION */
.faq,
.faq-contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.faq-item {
  background-color: #FFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #D4A574;
}

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

.faq-item p {
  color: #555;
  margin-bottom: 0;
}

/* SERVICE DETAIL PAGES */
.service-detail {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-info {
  background-color: #F4EBE1;
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.service-info h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-info ul {
  list-style: none;
  margin: 0;
}

.service-info li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
}

/* COLLECTION CATEGORY */
.collection-category {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.style-tip {
  background-color: #FFF;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #D4A574;
  margin-top: 24px;
  font-style: italic;
  color: #555;
}

/* MATERIALS & QUALITY */
.materials-quality {
  background: linear-gradient(135deg, #F4EBE1 0%, #FFF9F5 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.sustainability-note {
  text-align: center;
  font-style: italic;
  color: #2C5F4F;
  margin-top: 32px;
  padding: 20px;
  background-color: #FFF;
  border-radius: 12px;
}

/* CONTACT PAGE */
.contact-form-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.form-placeholder {
  background-color: #FFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder p {
  margin-bottom: 12px;
}

.form-placeholder .note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

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

.map-placeholder {
  background-color: #F4EBE1;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.contact-grid {
  justify-content: flex-start;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 280px;
}

.contact-item h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.consultation-benefits {
  background-color: #FFF;
  padding: 32px;
  border-radius: 12px;
  margin: 24px 0;
}

.consultation-benefits h3 {
  margin-bottom: 16px;
}

.consultation-benefits ul {
  margin-bottom: 24px;
}

.consultation-benefits li::before {
  content: '✓';
  color: #D4A574;
  font-weight: 700;
  margin-right: 8px;
}

/* THANK YOU PAGE */
.thank-you-content {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2C5F4F 0%, #3a7a65 100%);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.3);
}

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

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

.next-steps .step {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #FFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: #D4A574;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.email-note {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 24px;
}

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

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

.suggestion-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
}

.contact-alternative {
  background: linear-gradient(135deg, #F4EBE1 0%, #FFF9F5 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 32px 0;
}

.contact-method {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-method h3 {
  margin-bottom: 12px;
}

.contact-method .note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 8px;
}

.showroom-invite {
  margin-top: 24px;
  font-weight: 500;
}

.back-to-home {
  text-align: center;
  margin-bottom: 60px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  text-align: left;
  margin-top: 24px;
}

.back-link {
  text-align: center;
  margin: 40px 0;
}

/* FOOTER - Warm & Complete */
footer {
  background: linear-gradient(135deg, #2C5F4F 0%, #1f4738 100%);
  color: #F4EBE1;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

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

.tagline {
  font-style: italic;
  color: #D4A574;
  margin-bottom: 12px;
  font-weight: 500;
}

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

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

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

.footer-column a:hover {
  color: #D4A574;
  padding-left: 8px;
}

.footer-column p {
  color: #F4EBE1;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.footer-bottom a {
  color: #D4A574;
  font-weight: 500;
}

/* COOKIE CONSENT BANNER - Fixed Bottom */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #D4A574;
}

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

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

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

.cookie-text h4 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons button,
.cookie-buttons a {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.accept-all {
  background-color: #2C5F4F;
  color: #FFF;
  border: none;
}

.accept-all:hover {
  background-color: #3a7a65;
}

.reject-all {
  background-color: transparent;
  color: #2C5F4F;
  border: 2px solid #2C5F4F;
}

.reject-all:hover {
  background-color: #2C5F4F;
  color: #FFF;
}

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

.cookie-settings:hover {
  background-color: #D4A574;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background-color: #FFF;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

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

.modal-content h3 {
  color: #2C5F4F;
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #F4EBE1;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #2C5F4F;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  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: #ccc;
  transition: 0.3s;
  border-radius: 50px;
}

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

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

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

input:disabled + .toggle-slider {
  background-color: #2C5F4F;
  opacity: 0.6;
  cursor: not-allowed;
}

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

.save-preferences {
  background-color: #2C5F4F;
  color: #FFF;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences:hover {
  background-color: #3a7a65;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids and cards */
  .services-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .expertise-grid,
  .categories-grid,
  .styles-grid,
  .materials-grid,
  .trends-grid,
  .projects-grid,
  .contact-grid {
    gap: 16px;
  }
  
  .service-card,
  .testimonial-card,
  .category-card,
  .project-card,
  .contact-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Stats */
  .stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
    text-align: center;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  /* Service content */
  .service-content {
    padding: 24px;
  }
  
  /* Contact */
  .contact-quick {
    flex-direction: column;
  }
  
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .service-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  h1 {
    font-size: 40px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
}

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

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

.service-card,
.testimonial-card,
.category-card {
  animation: fadeIn 0.6s ease-out forwards;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #D4A574;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #D4A574;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: #FFF;
  }
  
  .service-card,
  .testimonial-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}