/* ==========================================
   CALM FRAME - CREATIVE ARTISTIC DESIGN
   Modern Interior Design Studio
   ========================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2C2C2C;
  background: linear-gradient(135deg, #F7F3EE 0%, #FDFBF8 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - Creative & Artistic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F4F;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-style: italic;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4B896 0%, #F7C873 100%);
  border-radius: 2px;
}

h2 {
  font-size: 38px;
  color: #2C5F4F;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

h2::before {
  content: '✦';
  display: block;
  font-size: 24px;
  color: #D4B896;
  margin-bottom: 10px;
}

h3 {
  font-size: 28px;
  color: #2C5F4F;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #D4B896;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

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

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

/* HEADER - Creative Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #D4B896;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(44, 95, 79, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* MAIN NAVIGATION - Desktop */
.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F4F;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4B896, #F7C873);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(212, 184, 150, 0.1);
  color: #D4B896;
}

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

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(44, 95, 79, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F4F 0%, #3A7A66 100%);
  z-index: 1999;
  padding: 80px 32px 40px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #D4B896;
  transform: translateX(8px);
}

/* HERO SECTION - Creative & Artistic */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 79, 0.05) 0%, rgba(247, 243, 238, 0.8) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 95, 79, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero .subheadline {
  font-size: 20px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
}

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

/* CTA BUTTONS - Creative Style */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(44, 95, 79, 0.4);
}

.btn-secondary {
  background: white;
  color: #2C5F4F;
  border-color: #D4B896;
  box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D4B896 0%, #F7C873 100%);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 184, 150, 0.4);
}

/* SECTIONS - Creative Layout */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.value-proposition,
.services-preview,
.testimonials,
.trust-indicators {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.08);
  position: relative;
  overflow: hidden;
}

.value-proposition::before,
.services-preview::before {
  content: '✦';
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 60px;
  color: rgba(212, 184, 150, 0.15);
  transform: rotate(20deg);
}

.main-statement {
  font-size: 24px;
  font-weight: 600;
  color: #2C5F4F;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-style: italic;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.pillars-grid,
.services-grid,
.values-grid,
.team-grid,
.stats-grid,
.contact-grid,
.info-grid,
.content-grid,
.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 40px;
}

/* CARDS - Creative & Artistic Style */
.pillar,
.service-card,
.value,
.team-member,
.stat,
.contact-option,
.article,
.action,
.step {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  background: linear-gradient(135deg, #F7F3EE 0%, white 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(44, 95, 79, 0.1);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 28px;
  border: 2px solid transparent;
}

.pillar::before,
.service-card::before,
.value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D4B896 0%, #F7C873 100%);
  border-radius: 20px 20px 0 0;
}

.pillar:hover,
.service-card:hover,
.value:hover,
.team-member:hover,
.contact-option:hover,
.article:hover,
.action:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(44, 95, 79, 0.2);
  border-color: #D4B896;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4B896;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

/* TESTIMONIALS - High Contrast */
.testimonials {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
}

.testimonials h2 {
  color: white;
}

.testimonials h2::before {
  color: #D4B896;
}

.testimonials p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  margin: 30px 0;
  border-left: 5px solid #D4B896;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: white;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card cite {
  display: block;
  font-size: 16px;
  color: #D4B896;
  font-weight: 600;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  font-size: 20px;
  color: #F7C873;
  text-align: center;
  margin-top: 30px;
}

/* STATS - Creative Display */
.stat {
  text-align: center;
  flex: 1 1 calc(33.333% - 28px);
  min-width: 200px;
  background: white;
  padding: 40px 28px;
}

.stat strong {
  display: block;
  font-size: 56px;
  color: #2C5F4F;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-style: italic;
}

.stat p {
  font-size: 17px;
  color: #4A4A4A;
  font-weight: 600;
}

/* SERVICES DETAILED */
.service-detail {
  background: white;
  padding: 48px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.1);
  border-left: 6px solid #D4B896;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(44, 95, 79, 0.15);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-detail h2::before {
  display: none;
}

.service-detail .price {
  font-size: 32px;
  color: #D4B896;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

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

.service-detail ul li {
  list-style: none;
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: #4A4A4A;
}

.service-detail ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #D4B896;
  font-size: 16px;
}

/* PORTFOLIO PROJECTS */
.project {
  background: white;
  padding: 48px 40px;
  border-radius: 20px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.1);
  position: relative;
  overflow: hidden;
}

.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #D4B896 0%, #F7C873 100%);
}

.project h2 {
  text-align: left;
  color: #2C5F4F;
  margin-bottom: 16px;
}

.project h2::before {
  display: none;
}

.project-info {
  font-size: 15px;
  color: #D4B896;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project blockquote {
  background: rgba(212, 184, 150, 0.1);
  border-left: 4px solid #D4B896;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: #4A4A4A;
  border-radius: 0 12px 12px 0;
}

/* ARTICLES - Blog Style */
.article-featured {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  padding: 60px 48px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.2);
}

.article-featured h2 {
  color: white;
  text-align: left;
  font-size: 42px;
}

.article-featured h2::before {
  display: none;
}

.article-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.meta {
  font-size: 14px;
  color: #D4B896;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

article {
  flex: 1 1 calc(50% - 28px);
  min-width: 280px;
}

article h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #2C5F4F;
}

/* QUICK TIPS */
.quick-tips {
  background: linear-gradient(135deg, #F7F3EE 0%, white 100%);
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.1);
}

.quick-tips ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.quick-tips li {
  padding: 20px 24px;
  padding-left: 56px;
  background: white;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #D4B896;
}

.quick-tips li::before {
  content: '✦';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #D4B896;
  font-size: 24px;
}

.quick-tips li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.12);
}

/* FAQ */
.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.08);
  border-left: 4px solid #D4B896;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(44, 95, 79, 0.12);
}

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

.faq-item p {
  color: #4A4A4A;
  line-height: 1.7;
}

/* CONTACT PAGE */
.contact-option {
  text-align: center;
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
}

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

.form-info {
  background: rgba(212, 184, 150, 0.1);
  padding: 32px;
  border-radius: 16px;
  margin: 30px 0;
  border-left: 4px solid #D4B896;
}

.form-info ul {
  margin-top: 20px;
  padding-left: 24px;
}

.form-info li {
  list-style: none;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

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

/* LEGAL CONTENT */
.legal-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.1);
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 40px;
}

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

.legal-content h2::before {
  display: none;
}

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

.legal-content li {
  list-style: none;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
}

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

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.3);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 40px;
}

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

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

/* CTA FINAL */
.cta-final,
.cta {
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.2) 0%, rgba(247, 243, 238, 0.5) 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.1);
}

.trust-signal {
  font-size: 15px;
  color: #4A4A4A;
  margin-top: 30px;
  font-weight: 600;
}

/* FOOTER - Creative Design */
footer {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4538 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D4B896 0%, #F7C873 50%, #D4B896 100%);
}

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

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

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

footer h3 {
  color: #D4B896;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-size: 16px;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7A66 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.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: 20px;
}

.cookie-text {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

.cookie-btn-accept {
  background: white;
  color: #2C5F4F;
}

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

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  margin: 16px 0;
  background: rgba(212, 184, 150, 0.1);
  border-radius: 12px;
  border-left: 4px solid #D4B896;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

.toggle-switch.active {
  background: #2C5F4F;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

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

.cookie-save {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero .subheadline {
    font-size: 17px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards - full width on mobile */
  .pillar,
  .service-card,
  .value,
  .team-member,
  .stat,
  .contact-option,
  .article,
  .action,
  .step {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .value-proposition,
  .services-preview,
  .testimonials,
  .trust-indicators {
    padding: 40px 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-links a,
  .footer-contact p {
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content {
    padding: 40px 24px;
  }
  
  /* Service details */
  .service-detail {
    padding: 32px 24px;
  }
  
  /* Projects */
  .project {
    padding: 32px 24px;
  }
  
  /* Stats */
  .stat strong {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .container {
    padding: 0 16px;
  }
}

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

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #D4B896;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION */
::selection {
  background: #D4B896;
  color: white;
}

::-moz-selection {
  background: #D4B896;
  color: white;
}