/* =================================================================
   FIRETHORN ARCH - WARM & FRIENDLY DESIGN SYSTEM
   ================================================================= */

/* 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', Arial, sans-serif;
  line-height: 1.7;
  color: #3D2817;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

/* WARM COLOR PALETTE */
:root {
  --primary: #8B4513;
  --primary-dark: #5C2D0C;
  --secondary: #2C3E50;
  --accent: #F5D76E;
  --warm-bg: #FFF9F0;
  --warm-white: #FFFBF5;
  --warm-cream: #FFF5E6;
  --warm-orange: #FF8C42;
  --warm-coral: #FF6B6B;
  --warm-brown: #8B6F47;
  --text-dark: #3D2817;
  --text-medium: #6B5744;
  --text-light: #9B8B7E;
  --shadow-soft: 0 4px 12px rgba(139, 69, 19, 0.08);
  --shadow-medium: 0 6px 20px rgba(139, 69, 19, 0.12);
  --shadow-strong: 0 10px 30px rgba(139, 69, 19, 0.15);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

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: var(--text-medium);
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--warm-orange);
}

ul {
  list-style: none;
}

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

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

/* BUTTONS - WARM & FRIENDLY STYLE */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--warm-brown) 100%);
  color: var(--warm-white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-secondary {
  background-color: var(--warm-cream);
  color: var(--primary);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* HEADER - WARM & FRIENDLY */
header {
  background-color: var(--warm-white);
  padding: 20px 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

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

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

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: var(--warm-cream);
  color: var(--primary);
  transform: scale(1.05);
}

/* MOBILE MENU - WARM DESIGN */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--primary) 0%, var(--warm-brown) 100%);
  color: var(--warm-white);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-strong);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-cream) 100%);
  z-index: 1000;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--warm-coral);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--warm-orange);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  background-color: var(--warm-white);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.mobile-nav a:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateX(8px);
  border-left-color: var(--primary);
}

/* HERO SECTION - WARM & INVITING */
.hero {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 50%, #FFE8D1 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--accent);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 215, 110, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
  padding: 12px 24px;
  background-color: var(--warm-white);
  border-radius: 25px;
  display: inline-block;
  box-shadow: var(--shadow-soft);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--warm-cream) 0%, #FFE8D1 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
}

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

.page-hero p {
  font-size: 20px;
  color: var(--text-medium);
}

/* SECTIONS - WARM SPACING */
.section, section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section:nth-child(even) {
  background-color: var(--warm-white);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--warm-orange) 100%);
  border-radius: 2px;
}

/* VALUE PROPOSITION - WARM CARDS */
.value-proposition {
  background-color: var(--warm-white);
}

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

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: var(--warm-cream);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent);
  background-color: var(--warm-white);
}

.value-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-medium);
  font-size: 16px;
}

/* SERVICES - FRIENDLY LAYOUT */
.services-overview, .services-list {
  background-color: var(--warm-bg);
}

.services-overview > .container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text-medium);
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--warm-white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-top-color: var(--warm-orange);
}

.service-card h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.service-detail {
  background-color: var(--warm-white);
  padding: 40px 32px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--accent);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: var(--shadow-medium);
  border-left-color: var(--warm-orange);
}

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

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

.service-detail .price {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.service-detail ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-medium);
  font-size: 16px;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--warm-orange);
  font-weight: 700;
  font-size: 18px;
}

.duration {
  font-style: italic;
  color: var(--text-light);
  margin-top: 16px;
}

/* PROCESS STEPS - WARM TIMELINE */
.process-preview, .process-overview, .process-steps {
  background-color: var(--warm-white);
}

.process-steps .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step, .step {
  background-color: var(--warm-cream);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step:hover, .step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--warm-orange);
}

.step h3 {
  color: var(--primary);
  font-size: 48px;
  margin-bottom: 8px;
}

.step p {
  font-size: 18px;
  color: var(--text-dark);
}

.step-duration {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent);
  color: var(--primary-dark);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}

/* PORTFOLIO - WARM SHOWCASE */
.portfolio-showcase, .portfolio-intro, .projects {
  background-color: var(--warm-bg);
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  min-height: 280px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 40px 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent);
}

.project-card h3 {
  font-size: 22px;
  color: var(--primary-dark);
}

.project-showcase {
  background-color: var(--warm-white);
  padding: 40px 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--accent);
  transition: all 0.3s ease;
}

.project-showcase:hover {
  box-shadow: var(--shadow-medium);
  border-top-color: var(--warm-orange);
}

.project-meta {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

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

.stat, .milestone {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px 20px;
  background-color: var(--warm-cream);
  border-radius: 16px;
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.stat:hover, .milestone:hover {
  transform: scale(1.05);
  background-color: var(--accent);
  color: var(--primary-dark);
}

/* TESTIMONIALS - WARM & FRIENDLY */
.testimonials {
  background-color: var(--warm-white);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: var(--warm-cream);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-left-color: var(--warm-orange);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
}

.testimonial-card p:first-child {
  font-style: italic;
  font-size: 17px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  margin-top: 8px;
}

/* PHILOSOPHY & VALUES */
.philosophy, .values, .story, .benefits, .process-benefits {
  background-color: var(--warm-bg);
}

.philosophy-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.philosophy-item, .value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: var(--warm-white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.philosophy-item:hover, .value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--warm-orange);
}

.philosophy-item h3, .value-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.benefits ul, .process-benefits ul {
  max-width: 800px;
  margin: 32px auto;
  padding-left: 0;
}

.benefits ul li, .process-benefits ul li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background-color: var(--warm-white);
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  color: var(--text-medium);
}

.benefits ul li:hover, .process-benefits ul li:hover {
  transform: translateX(8px);
  background-color: var(--warm-cream);
}

.benefits ul li::before, .process-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-orange);
  font-weight: 700;
  font-size: 20px;
}

/* CONTACT - WARM & INVITING */
.contact-info, .contact-form-section, .consultation-types {
  background-color: var(--warm-white);
}

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

.contact-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: var(--warm-cream);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.contact-item h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}

.form-note {
  max-width: 700px;
  margin: 32px auto;
  padding: 24px 28px;
  background-color: var(--warm-cream);
  border-radius: 16px;
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.form-note p {
  margin: 0;
  color: var(--text-dark);
}

.consultation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.consultation-type {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: var(--warm-white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.consultation-type:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--warm-orange);
}

.consultation-type h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* CTA SECTION - WARM & FRIENDLY */
.cta-section {
  background: linear-gradient(135deg, var(--warm-cream) 0%, #FFE8D1 100%);
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

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

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

.support-text {
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-medium);
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--warm-cream) 0%, #FFE8D1 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.next-steps, .explore-more, .back-home {
  padding: 60px 20px;
  text-align: center;
}

.next-steps ul {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
  padding-left: 0;
}

.next-steps ul li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background-color: var(--warm-white);
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-soft);
  color: var(--text-medium);
}

.next-steps ul li::before {
  content: '→';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-orange);
  font-weight: 700;
  font-size: 20px;
}

.note {
  margin-top: 32px;
  font-style: italic;
  color: var(--text-light);
}

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

.explore-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--warm-white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--warm-orange);
}

.explore-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* LEGAL PAGES */
.legal-content {
  background-color: var(--warm-white);
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

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

.legal-content p, .legal-content ul {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--warm-orange);
}

/* FOOTER - WARM & FRIENDLY */
footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--warm-white);
  padding: 60px 20px 20px;
  border-top: 5px solid var(--accent);
}

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

.footer-brand, .footer-contact, .footer-nav, .footer-legal {
  flex: 1 1 220px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--warm-cream);
  line-height: 1.6;
}

footer h4 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}

footer p {
  font-size: 14px;
  color: var(--warm-cream);
  line-height: 1.7;
  margin-bottom: 8px;
}

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

footer nav a {
  color: var(--warm-cream);
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 215, 110, 0.3);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--warm-cream);
  margin: 0;
}

/* COOKIE CONSENT BANNER - WARM DESIGN */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-top: 4px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

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

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

#accept-all-cookies {
  background: linear-gradient(135deg, var(--primary) 0%, var(--warm-brown) 100%);
  color: white;
}

#accept-all-cookies:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

#reject-all-cookies {
  background-color: transparent;
  color: var(--text-medium);
  border: 2px solid var(--text-medium);
}

#reject-all-cookies:hover {
  background-color: var(--warm-cream);
  color: var(--text-dark);
}

#cookie-settings {
  background-color: var(--accent);
  color: var(--primary-dark);
}

#cookie-settings:hover {
  background-color: var(--warm-orange);
  color: white;
}

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

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

.cookie-modal-content {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-cream) 100%);
  padding: 40px 32px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--accent);
}

.cookie-modal-content h2 {
  color: var(--primary-dark);
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  background-color: var(--warm-white);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.cookie-category h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

#save-cookie-preferences {
  background: linear-gradient(135deg, var(--primary) 0%, var(--warm-brown) 100%);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

#close-cookie-modal {
  background-color: var(--warm-cream);
  color: var(--text-dark);
  padding: 12px 32px;
  border: 2px solid var(--accent);
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#close-cookie-modal:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .value-card {
    flex: 1 1 100%;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .services-grid, .values-grid, .portfolio-grid, .process-steps .container,
  .testimonials-grid, .philosophy-grid, .stats, .milestones,
  .contact-details, .consultation-grid, .explore-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .philosophy-item, .value-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  #cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .project-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.hero-content, .page-hero, section {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus, a:focus, button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle, .mobile-menu, #cookie-banner, #cookie-modal {
    display: none !important;
  }
}