/* ===================================
   SILENT ZENITH - WARM & FRIENDLY DESIGN
   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', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #C89860;
  text-decoration: underline;
}

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

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

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

em {
  font-style: italic;
  color: #7B8794;
}

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

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

/* ===================================
   HEADER - WARM & FRIENDLY
   =================================== */

header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(212, 165, 116, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #E8D5B7;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.main-nav a:hover {
  color: #D4A574;
  border-bottom-color: #E8D5B7;
  text-decoration: none;
}

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

.btn-primary,
.cta-button,
button.btn-primary,
a.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  text-decoration: none;
}

.btn-primary:hover,
.cta-button:hover {
  background: linear-gradient(135deg, #C89860 0%, #D4A574 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  color: #FFFFFF;
  text-decoration: none;
}

.btn-secondary,
a.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #FFFFFF;
  color: #D4A574;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid #D4A574;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  text-decoration: none;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.link {
  color: #D4A574;
  font-weight: 600;
  border-bottom: 2px solid #E8D5B7;
  transition: all 0.3s ease;
  display: inline-block;
}

.link:hover {
  color: #C89860;
  border-bottom-color: #D4A574;
  text-decoration: none;
}

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  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: #FFF5E6;
  color: #D4A574;
}

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

.mobile-nav a {
  padding: 16px 0;
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #F5E9D6;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4A574;
  padding-left: 10px;
  background-color: #FFF9F0;
  text-decoration: none;
}

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

.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 80px 20px;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

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

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

.subheadline {
  font-size: 20px;
  color: #556270;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

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

.page-hero p {
  font-size: 18px;
  color: #7B8794;
}

/* ===================================
   SECTIONS - CONSISTENT SPACING
   =================================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7B8794;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   CARDS - WARM & FRIENDLY DESIGN
   =================================== */

.service-card,
.project-card,
.testimonial-card,
.team-member {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  border: 2px solid #FFF5E6;
}

.service-card:hover,
.project-card:hover,
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.25);
  border-color: #E8D5B7;
}

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

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D4A574;
  margin: 16px 0;
}

.price-prominent {
  font-size: 36px;
  font-weight: 700;
  color: #D4A574;
  margin: 20px 0;
  text-align: center;
}

/* ===================================
   FLEXBOX GRIDS - NO CSS GRID!
   =================================== */

.services-grid,
.portfolio-grid,
.team-grid,
.stats-grid,
.pillars-grid,
.process-steps,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.project-card,
.team-member,
.stat,
.pillar,
.step,
.testimonial-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

/* ===================================
   SERVICE CARDS - DETAILED
   =================================== */

.service-card-detailed {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
  border: 2px solid #FFF5E6;
  transition: all 0.3s ease;
}

.service-card-detailed:hover {
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.25);
  border-color: #E8D5B7;
}

.service-card-detailed h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-card-detailed ul {
  margin: 20px 0;
  padding-left: 24px;
}

.service-card-detailed li {
  margin-bottom: 12px;
  color: #556270;
  position: relative;
  padding-left: 8px;
}

.service-card-detailed li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: #D4A574;
  font-weight: bold;
}

/* ===================================
   TESTIMONIALS - READABLE TEXT
   =================================== */

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

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

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #E8D5B7;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

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

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

.client-location {
  color: #7B8794;
  font-size: 14px;
  font-style: normal;
}

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

.project-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-category {
  font-size: 14px;
  color: #D4A574;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-details {
  font-size: 14px;
  color: #7B8794;
}

.project-tags {
  font-size: 13px;
  color: #95A5A6;
  font-style: italic;
}

/* ===================================
   PROCESS & STAGES
   =================================== */

.step,
.stage {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.step-number,
.stage-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.step h3,
.stage h2 {
  margin-bottom: 12px;
}

/* ===================================
   STATS
   =================================== */

.stat {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 2px solid #E8D5B7;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4A574;
  display: block;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.stat p {
  color: #556270;
  font-size: 16px;
}

/* ===================================
   FAQ
   =================================== */

.faq-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 20px;
  border: 2px solid #FFF5E6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #E8D5B7;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
}

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

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

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

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

/* ===================================
   CONTACT FORM PLACEHOLDER
   =================================== */

.form-placeholder {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
  border: 2px solid #E8D5B7;
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

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

.input-placeholder {
  height: 48px;
  background-color: #FFF9F0;
  border: 2px solid #E8D5B7;
  border-radius: 10px;
}

.textarea-placeholder {
  height: 120px;
  background-color: #FFF9F0;
  border: 2px solid #E8D5B7;
  border-radius: 10px;
}

.button-placeholder {
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.form-notice {
  background-color: #FFF9F0;
  border: 2px solid #E8D5B7;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 32px;
}

.form-notice p {
  margin-bottom: 8px;
}

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

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #E8D5B7;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.contact-item h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-item p {
  color: #556270;
}

.contact-item a {
  color: #D4A574;
  font-weight: 600;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1);
  border: 2px solid #FFF5E6;
}

.legal-content h2 {
  color: #2C3E50;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8D5B7;
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  color: #D4A574;
  margin-top: 24px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #556270;
}

.rights-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.right-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background-color: #FFF9F0;
  padding: 24px;
  border-radius: 15px;
  border: 2px solid #E8D5B7;
}

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

/* ===================================
   THANK YOU / CONFIRMATION PAGES
   =================================== */

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.confirmation-message {
  font-size: 24px;
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 16px;
}

.steps-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.step-box,
.step-item,
.explore-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #E8D5B7;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.step-box:hover,
.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

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

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

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #E8D5B7;
  padding: 60px 20px 24px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
}

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

.footer-brand,
.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

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

.footer-brand p {
  color: #E8D5B7;
  font-size: 14px;
}

footer h4 {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

footer a {
  color: #BDB5A8;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: #E8D5B7;
  padding-left: 8px;
  text-decoration: none;
}

footer p {
  color: #BDB5A8;
  font-size: 14px;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  color: #95A5A6;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #3E5266;
  margin-bottom: 0;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  border-top: 3px solid #E8D5B7;
  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 60%;
  min-width: 280px;
}

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

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

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: linear-gradient(135deg, #D4A574 0%, #E8D5B7 100%);
  color: #FFFFFF;
}

#accept-cookies:hover {
  background: linear-gradient(135deg, #C89860 0%, #D4A574 100%);
  transform: translateY(-2px);
}

#reject-cookies {
  background-color: #F5F5F5;
  color: #2C3E50;
}

#reject-cookies:hover {
  background-color: #E8E8E8;
}

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

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

/* Cookie Preferences Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-category {
  background-color: #FFF9F0;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 2px solid #E8D5B7;
}

.cookie-category h3 {
  color: #D4A574;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.cookie-toggle label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

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

  .subheadline {
    font-size: 18px;
  }

  /* Header */
  header {
    padding: 16px 0;
  }

  .main-nav,
  .cta-button {
    display: none;
  }

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

  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 20px;
  }

  /* Flexbox layouts - stack on mobile */
  .services-grid,
  .portfolio-grid,
  .team-grid,
  .stats-grid,
  .pillars-grid,
  .process-steps,
  .testimonials-grid,
  .content-grid,
  .footer-content,
  .contact-details,
  .steps-grid,
  .explore-grid {
    flex-direction: column;
  }

  .service-card,
  .project-card,
  .team-member,
  .stat,
  .pillar,
  .step,
  .testimonial-card,
  .contact-item,
  .step-box,
  .explore-card,
  .right-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA Groups */
  .cta-group,
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-group a,
  .action-buttons a {
    width: 100%;
    text-align: center;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Forms */
  .form-placeholder {
    padding: 24px;
  }

  /* Legal Content */
  .legal-content {
    padding: 24px;
  }

  /* Footer */
  footer {
    padding: 40px 16px 20px;
  }

  .footer-content {
    gap: 32px;
  }

  /* Process Steps */
  .step,
  .stage {
    padding-left: 0;
    padding-top: 70px;
  }

  .step-number,
  .stage-number {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .price-prominent {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .container {
    padding: 0 16px;
  }

  .service-card,
  .project-card,
  .team-member,
  .service-card-detailed {
    padding: 20px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.hidden {
  display: none;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button,
a,
.card,
.service-card,
.project-card {
  transition: all 0.3s ease;
}

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

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