/* ===================================
   ENERGICA CASA FIRENZE - STYLE.CSS
   Scandinavian Clean Design Style
   =================================== */

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   =================================== */

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #8B4513;
}

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

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

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

table th,
table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e5e5e5;
}

table th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #2c2c2c;
}

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

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

/* ===================================
   HEADER - CLEAN SCANDINAVIAN
   =================================== */

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

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

/* ===================================
   MOBILE MENU - SCANDINAVIAN SLIDE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #FFFFFF;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #2c2c2c;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-menu-toggle:hover {
  background-color: #f5f5f5;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1200;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
}

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

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

.mobile-menu-close:hover {
  color: #8B4513;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

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

/* ===================================
   BUTTONS - MINIMALIST SCANDINAVIAN
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #8B4513;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.btn-primary:hover {
  background-color: #5C2D0C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
  background-color: #8B4513;
  color: #FFFFFF;
}

/* ===================================
   HERO SECTION - CLEAN & SPACIOUS
   =================================== */

.hero {
  background-color: #F5F3EF;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge,
.trust-element {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 500;
  margin-top: 16px;
}

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

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

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

/* ===================================
   VALUE PROPOSITION - FLEXBOX GRID
   =================================== */

.value-proposition {
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
  color: #6a6a6a;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   SERVICES GRID - FLEXBOX LAYOUT
   =================================== */

.services-overview,
.services-detail {
  background-color: #FFFFFF;
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #8B4513;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
  color: #6a6a6a;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #8B4513;
  margin-top: 16px;
}

/* SERVICE DETAIL PAGES */
.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-detail h2,
.service-detail h3 {
  color: #2c2c2c;
  margin-bottom: 12px;
}

.service-detail .tagline {
  font-size: 18px;
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 16px;
}

.service-detail .price-range {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
}

/* ===================================
   TESTIMONIALS - CLEAN CARDS
   =================================== */

.testimonials {
  background-color: #F5F3EF;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  font-size: 64px;
  color: #e5e5e5;
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #8B4513;
  font-size: 14px;
  text-align: right;
}

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

/* ===================================
   CTA SECTION - CENTERED & CLEAN
   =================================== */

.cta-section {
  background-color: #2C5F2D;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

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

.cta-section .btn-primary {
  background-color: #D4AF37;
  color: #1a1a1a;
}

.cta-section .btn-primary:hover {
  background-color: #9C7B1F;
  color: #FFFFFF;
}

.cta-section .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C5F2D;
}

.urgency {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 16px;
  opacity: 0.9;
}

/* ===================================
   STORY & VALUES - CHI SIAMO
   =================================== */

.story,
.values {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.story h2,
.values h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}

.milestone {
  padding: 20px;
  background-color: #F5F3EF;
  border-left: 4px solid #8B4513;
  font-size: 16px;
  color: #2c2c2c;
}

.milestone strong {
  color: #8B4513;
  font-size: 18px;
}

.stats {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 40px;
  padding: 24px;
  background-color: #F5F3EF;
  border-radius: 4px;
}

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

/* ===================================
   TEAM SECTION - FLEXBOX GRID
   =================================== */

.team {
  background-color: #FAFAFA;
  padding: 60px 20px;
}

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

.team > p {
  text-align: center;
  color: #6a6a6a;
  margin-bottom: 40px;
}

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

.team-member {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.team-member h3 {
  color: #2c2c2c;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-member p {
  color: #6a6a6a;
  font-size: 15px;
}

/* ===================================
   PORTFOLIO - FEATURED PROJECTS
   =================================== */

.featured-projects {
  padding: 40px 20px;
}

.project-featured {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.project-featured h2 {
  color: #2c2c2c;
  margin-bottom: 16px;
  font-size: 28px;
}

.project-featured p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.project-featured strong {
  color: #8B4513;
}

.project-featured .testimonial {
  font-style: italic;
  color: #6a6a6a;
  margin-top: 20px;
  padding: 16px;
  background-color: #F5F3EF;
  border-left: 3px solid #8B4513;
}

/* PROJECT STATS */
.project-stats {
  background-color: #F5F3EF;
  padding: 60px 20px;
}

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

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

.stat-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
  font-size: 48px;
  color: #8B4513;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #4a4a4a;
}

/* ===================================
   WORKSHOP SECTIONS
   =================================== */

.workshop-benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 24px;
  background-color: #F5F3EF;
  border-radius: 4px;
}

.benefit-item h3 {
  color: #2c2c2c;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #6a6a6a;
}

.guarantee {
  text-align: center;
  font-weight: 600;
  color: #2C5F2D;
  margin-top: 24px;
  font-size: 16px;
}

.workshops {
  padding: 40px 20px;
}

.workshop-detail {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2C5F2D;
}

.workshop-detail h3 {
  color: #2c2c2c;
  margin-bottom: 8px;
}

.workshop-detail .tagline {
  font-size: 16px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===================================
   GARDEN SECTIONS
   =================================== */

.garden-philosophy,
.garden-services,
.garden-styles {
  padding: 60px 20px;
}

.garden-philosophy {
  background-color: #F5F3EF;
}

.garden-philosophy h2,
.garden-services h2,
.garden-styles h2 {
  text-align: center;
  margin-bottom: 16px;
}

.garden-philosophy > p,
.garden-services > p {
  text-align: center;
  color: #6a6a6a;
  margin-bottom: 40px;
}

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

.principle-item,
.style-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.principle-item h3,
.style-item h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.principle-item p,
.style-item p {
  color: #6a6a6a;
}

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

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

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

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-option {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
  color: #2c2c2c;
  margin-bottom: 12px;
}

.contact-option p {
  color: #6a6a6a;
  margin-bottom: 8px;
}

.contact-option strong {
  color: #8B4513;
  font-size: 18px;
}

.location-info,
.team-contacts,
.faq {
  padding: 60px 20px;
}

.location-info {
  background-color: #F5F3EF;
}

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

.location-details p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.team-contacts {
  background-color: #FFFFFF;
}

.team-list {
  max-width: 700px;
  margin: 0 auto;
}

.team-list p {
  padding: 16px;
  background-color: #FAFAFA;
  margin-bottom: 16px;
  border-radius: 4px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #8B4513;
}

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

.faq-item p {
  color: #6a6a6a;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process {
  background-color: #F5F3EF;
  padding: 60px 20px;
}

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

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

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step h3 {
  color: #8B4513;
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  color: #6a6a6a;
  font-size: 14px;
}

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

.legal-page {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-page h1 {
  margin-bottom: 24px;
  text-align: center;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #4a4a4a;
}

.legal-page p {
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  max-width: 800px;
  margin: 0 auto 24px;
}

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

.thank-you-page {
  padding: 60px 20px;
  background-color: #F5F3EF;
}

.thank-you-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thank-you-content h1 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 40px;
}

.next-steps,
.while-you-wait,
.explore-content,
.social-proof,
.urgent-contact {
  margin: 40px 0;
  text-align: left;
}

.next-steps h2,
.while-you-wait h2,
.explore-content h2,
.social-proof h2,
.urgent-contact h2 {
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 24px;
}

.next-steps ol {
  max-width: 600px;
  margin: 0 auto;
}

.while-you-wait ul {
  max-width: 600px;
  margin: 0 auto;
}

.response-time {
  text-align: center;
  font-weight: 600;
  color: #8B4513;
  margin-top: 16px;
}

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

.link-card {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  padding: 20px;
  background-color: #F5F3EF;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  color: #8B4513;
  transition: all 0.3s ease;
}

.link-card:hover {
  background-color: #8B4513;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.stat {
  text-align: center;
}

.stat strong {
  font-size: 36px;
  color: #8B4513;
  display: block;
  margin-bottom: 8px;
}

.social-proof .testimonial {
  font-style: italic;
  color: #6a6a6a;
  text-align: center;
  margin-top: 24px;
}

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

/* ===================================
   FOOTER - MINIMAL SCANDINAVIAN
   =================================== */

footer {
  background-color: #2c2c2c;
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a {
  color: #c0c0c0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #D4AF37;
}

.footer-col ul {
  list-style: none;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #FFFFFF;
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 500px;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-cookies {
  background-color: #2C5F2D;
  color: #FFFFFF;
}

#accept-cookies:hover {
  background-color: #1f4520;
}

#reject-cookies {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #666;
}

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

#cookie-settings {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

#cookie-settings:hover {
  background-color: #D4AF37;
  color: #2c2c2c;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #4a4a4a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #2c2c2c;
}

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

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

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

.cookie-category h3 {
  color: #2c2c2c;
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

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

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

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #6a6a6a;
  font-size: 14px;
  margin: 0;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-preferences {
  background-color: #2C5F2D;
  color: #FFFFFF;
}

#save-preferences:hover {
  background-color: #1f4520;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .value-item,
  .service-card,
  .benefit-item,
  .principle-item,
  .style-item,
  .contact-option {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .team-member {
    flex: 1 1 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Hero */
  .hero {
    padding: 48px 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* CTA Section */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Service Detail */
  .service-detail {
    padding: 24px;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Thank You Page */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .links-grid {
    flex-direction: column;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .benefit-item,
  .principle-item,
  .style-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .team-member {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

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

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

/* Focus Styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #8B4513;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background-color: #8B4513;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #8B4513;
  color: #FFFFFF;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
  }
  
  .btn-primary {
    border: 2px solid #2c2c2c;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}