/* ============================================
   STYLES.CSS - Escalier Monte au Bois
   Core Styling & Layout
   ============================================ */

/* ============================================
   1. 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;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   2. COLOR SYSTEM
   ============================================ */
:root {
  --color-primary: #436b3b;        /* Primary green */
  --color-primary-dark: #2f4d2a;   /* Darker green accent */
  --color-primary-light: #5a8c4a;  /* Lighter green accent */
  --color-wood-dark: #6b4423;      /* Dark wood tone */
  --color-wood-light: #d4a57b;     /* Light wood tone */
  --color-accent: #8b6f47;         /* Warm accent */
  --color-secondary: #f0f4fd;      /* Light blue background */
  --color-bg-warm: #faf8f4;        /* Warm off-white */
  --color-dark: #000;              /* Black */
  --color-text: #333;              /* Dark text */
  --color-light: #777;             /* Light gray text */
  --color-border: #ddd;            /* Border color */
  --color-footer: #f0f4fd;         /* Footer background */
  --spacing: 1rem;
  --transition: 0.3s ease;
}

/* ============================================
   2.5 SVG ICON STYLING
   ============================================ */
svg {
  display: inline-block;
  vertical-align: middle;
}

svg[stroke] {
  stroke: var(--color-primary);
}

svg[fill="currentColor"] {
  fill: var(--color-primary);
}

/* Ensure SVG inherits parent colors */
img[src*=".svg"] {
  color: inherit;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================
   4. LAYOUT CONTAINERS
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================
   5. HEADER STYLES
   ============================================ */
header {
  border-bottom: 2px solid var(--color-primary);
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 25px;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  flex-shrink: 0;
  max-width: 140px;
  height: auto;
  transition: all 0.3s ease;
  transform: perspective(1000px);
}

.logo:hover {
  transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(67, 102, 59, 0.1));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 4px 12px rgba(67, 102, 59, 0.2));
}

/* Header Links (Contact, Phone, Email) */
.header-links {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.header-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  border-radius: 6px;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.header-link:hover {
  color: white;
  transform: translateY(-2px);
}

.header-link:hover::before {
  opacity: 0.08;
}

.header-link img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.header-link:hover img {
  transform: scale(1.15);
}

/* ============================================
   6. NAVIGATION STYLES
   ============================================ */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  padding: 12px 22px;
  color: var(--color-text);
  border-bottom: 3px solid transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

nav a:hover::before {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

.hamburger:hover {
  background: rgba(67, 102, 59, 0.08);
}

.hamburger span {
  width: 26px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
  white-space: pre-line;
}

.hero-images {
  display: grid;
  grid-template-rows: 400px 400px;
  gap: 20px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  box-shadow: 0 0 22px rgba(41, 45, 51, 0.2);
}

.hero-image.small {
  border-radius: 50px;
}

/* ============================================
   8. BUTTON STYLES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(67, 102, 59, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transition: left var(--transition);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 102, 59, 0.3);
}

.btn:hover::before {
  left: 0;
}

.btn svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.1rem;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(67, 102, 59, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  border: 2px solid transparent;
}

/* ============================================
   8.1 NEW HERO MINIMAL
   ============================================ */
.hero-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 100%);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-minimal::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-minimal::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(67, 102, 59, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.hero-title-main {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-wood-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--color-light);
  line-height: 1.8;
  font-weight: 500;
  max-width: 500px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-wood-light);
}

.hero-image-full {
  width: 100%;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(67, 102, 59, 0.2);
  position: relative;
  transform: perspective(1000px) rotateY(0deg);
  transition: all var(--transition);
  border: 1px solid rgba(212, 165, 123, 0.2);
}

.hero-image-full:hover {
  box-shadow: 0 40px 100px rgba(67, 102, 59, 0.28);
  transform: perspective(1000px) rotateY(-3deg) translateZ(20px);
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.hero-minimal:hover .hero-image-full img {
  transform: scale(1.08);
}

/* ============================================
   8.2 WHY US SECTION
   ============================================ */
.why-us {
  background: linear-gradient(to bottom, #faf8f4 0%, #fff 50%, #faf8f4 100%);
  padding: 100px 20px 80px;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-wood-light), var(--color-primary));
  border-radius: 1.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.features-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 32px;
  margin-top: 60px;
}

.feature-featured {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 123, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.02) 100%);
}

.feature-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 165, 123, 0.05), rgba(67, 102, 59, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-featured:hover::before {
  opacity: 1;
}

.feature-featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.feature-featured-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-featured-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(67, 102, 59, 0.12));
  color: var(--color-primary);
}

.feature-featured:hover .feature-featured-icon {
  transform: scale(1.15);
}

.feature-featured:hover .feature-featured-icon img {
  filter: drop-shadow(0 8px 20px rgba(67, 102, 59, 0.2));
}

.feature-featured h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 0 0 15px;
  font-weight: 700;
}

.feature-featured p {
  color: var(--color-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.feature-accent {
  background: linear-gradient(135deg, rgba(67, 102, 59, 0.08), rgba(212, 165, 123, 0.06));
  padding: 35px 35px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 123, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  position: relative;
}

.feature-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-wood-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-accent:hover::before {
  transform: scaleX(1);
}

.feature-accent:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(67, 102, 59, 0.12);
}

.feature-accent-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-accent-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(67, 102, 59, 0.1));
  color: var(--color-primary);
}

.feature-accent:hover .feature-accent-icon {
  transform: scale(1.1);
}

.feature-accent:hover .feature-accent-icon img {
  filter: drop-shadow(0 4px 12px rgba(67, 102, 59, 0.15));
}

.feature-accent h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
}

.feature-card {
  background: white;
  padding: 50px 35px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 123, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.03) 100%);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
  border-radius: 16px;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  top: -40%;
  right: -20%;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(67, 102, 59, 0.15));
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(8deg);
}

.feature-card:hover .feature-icon img {
  filter: drop-shadow(0 8px 16px rgba(67, 102, 59, 0.25));
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: var(--color-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   8.3 PROCESS SECTION
   ============================================ */
.process {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fff 0%, #faf8f4 50%, #fff 100%);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
  padding: 40px 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  border: 1px solid rgba(212, 165, 123, 0.1);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.02) 100%);
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 165, 123, 0.05) 0%, transparent 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(67, 102, 59, 0.12);
  border-color: var(--color-wood-light);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  box-shadow: 0 12px 35px rgba(67, 102, 59, 0.25);
  transition: all var(--transition);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.step:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 16px 45px rgba(67, 102, 59, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

.step h3 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 700;
}

.step p {
  color: var(--color-light);
  font-size: 0.96rem;
  line-height: 1.68;
  margin: 0;
}

.step-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}

/* ============================================
   8.3a EXPERTISE SECTION
   ============================================ */
.expertise {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fff 0%, #faf8f4 100%);
  position: relative;
}

.expertise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.expertise-subtitle {
  text-align: center;
  color: var(--color-light);
  font-size: 1.15rem;
  margin: 20px auto 60px;
  max-width: 700px;
  font-weight: 500;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.expertise-card {
  background: white;
  padding: 50px 35px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 123, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.02) 100%);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
  border-radius: 16px;
}

.expertise-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}

.expertise-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(67, 102, 59, 0.15)) 
          drop-shadow(0 0 1px rgba(212, 165, 123, 0.3));
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.2) rotate(8deg);
}

.expertise-card:hover .expertise-icon img {
  filter: drop-shadow(0 8px 18px rgba(67, 102, 59, 0.25))
          drop-shadow(0 0 2px rgba(212, 165, 123, 0.4));
}

.expertise-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.expertise-card p {
  color: var(--color-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   8.3b STATS SECTION
   ============================================ */
.stats-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 50%, #faf8f4 100%);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stats-minimalist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.stat-accent-line {
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-wood-light));
  border-radius: 2px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-accent-line {
  height: 60px;
  box-shadow: 0 8px 20px rgba(67, 102, 59, 0.2);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-description {
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
  margin: 0;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 123, 0.15);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.02) 100%);
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

/* ============================================
   8.3c MATERIALS SECTION
   ============================================ */
.materials {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #faf8f4 0%, #fff 100%);
  position: relative;
}

.materials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.materials::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.materials-subtitle {
  text-align: center;
  color: var(--color-light);
  font-size: 1.15rem;
  margin: 20px auto 60px;
  max-width: 700px;
  font-weight: 500;
  line-height: 1.8;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.materials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.material-feature {
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.01) 100%);
  border-radius: 14px;
  border: 1px solid rgba(212, 165, 123, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 165, 123, 0.05), rgba(67, 102, 59, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.material-feature:hover::before {
  opacity: 1;
}

.material-feature:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 50px rgba(67, 102, 59, 0.12);
  border-color: var(--color-primary);
}

.material-feature-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.material-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.material-feature-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(67, 102, 59, 0.1));
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.material-feature:hover .material-feature-icon {
  transform: scale(1.2);
}

.material-feature:hover .material-feature-icon img {
  filter: drop-shadow(0 6px 16px rgba(67, 102, 59, 0.18));
}

.material-feature h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 10px;
}

.material-feature p {
  color: var(--color-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.material-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 123, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.02) 100%);
}

.material-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.material-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f1eb 0%, #faf8f4 50%, #f0ebe4 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(212, 165, 123, 0.1);
  transition: all var(--transition);
  overflow: hidden;
}

.material-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 68, 35, 0.03) 2px, rgba(107, 68, 35, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 68, 35, 0.02) 2px, rgba(107, 68, 35, 0.02) 4px);
  pointer-events: none;
}

.material-item:hover .material-image {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3f0 50%, #f0ebe4 100%);
}

.material-placeholder {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.material-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(67, 102, 59, 0.12));
  color: var(--color-primary);
  stroke: var(--color-primary);
  transition: all var(--transition);
}

.material-item:hover .material-placeholder img {
  filter: drop-shadow(0 6px 16px rgba(67, 102, 59, 0.2))
          scale(1.08);
  transform: translateY(-2px);
}

.material-item h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  padding: 20px 20px 10px;
  margin: 0;
}

.material-item p {
  color: var(--color-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 20px 20px;
  margin: 0;
}

/* ============================================
   8.4 TEXTURE SHOWCASE SECTION
   ============================================ */
.texture-showcase {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff 0%, #faf8f4 100%);
  position: relative;
}

.texture-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.texture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.texture-card {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(67, 102, 59, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212, 165, 123, 0.2);
}

.texture-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.texture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.texture-overlay h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.texture-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Wood Texture Variations */
.wood-texture-maple::before {
  background: linear-gradient(135deg, 
    #d4a57b 0%, 
    #c89968 15%, 
    #d4a57b 30%, 
    #c89968 45%, 
    #e0b290 60%, 
    #d4a57b 75%, 
    #c89968 100%);
  background-size: 200% 200%;
  animation: woodGrain 8s ease-in-out infinite;
}

.wood-texture-walnut::before {
  background: linear-gradient(135deg, 
    #5a4a3a 0%, 
    #6b5a47 18%, 
    #5a4a3a 35%, 
    #7a6a57 55%, 
    #6b5a47 72%, 
    #5a4a3a 90%, 
    #6b5a47 100%);
  background-size: 200% 200%;
  animation: woodGrain 8s ease-in-out infinite 0.5s;
}

.wood-texture-oak::before {
  background: linear-gradient(135deg, 
    #a4845a 0%, 
    #b8955a 20%, 
    #a4845a 40%, 
    #9a7650 60%, 
    #b8955a 80%, 
    #a4845a 100%);
  background-size: 200% 200%;
  animation: woodGrain 8s ease-in-out infinite 1s;
}

.wood-texture-edge::before {
  background: linear-gradient(135deg, 
    #8b6f47 0%, 
    #7a5f3a 25%, 
    #8b6f47 50%, 
    #9a7f57 75%, 
    #8b6f47 100%);
  background-size: 200% 200%;
  animation: woodGrain 8s ease-in-out infinite 1.5s;
}

@keyframes woodGrain {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.texture-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(67, 102, 59, 0.25);
  border-color: var(--color-wood-light);
}

.texture-card:hover::before {
  opacity: 0.9;
}

.texture-card:hover .texture-overlay {
  background: rgba(0, 0, 0, 0.15);
}

/* ============================================
   8.4.5 CRAFTSMANSHIP DETAILS SECTION
   ============================================ */
.craftsmanship-details {
  padding: 100px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 100%);
  position: relative;
}

.craftsmanship-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.craftsmanship-details::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.detail-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 123, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 165, 123, 0.01) 100%);
}

.detail-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(212, 165, 123, 0.2), rgba(67, 102, 59, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: -1;
}

.detail-card:hover::before {
  opacity: 0.5;
}

.detail-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.detail-icon-large {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(67, 102, 59, 0.1), rgba(212, 165, 123, 0.1));
  border: 2px solid rgba(212, 165, 123, 0.3);
  transition: all 0.3s ease;
}

.detail-icon-large img {
  width: 60%;
  height: 60%;
  filter: drop-shadow(0 4px 10px rgba(67, 102, 59, 0.1));
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.detail-card:hover .detail-icon-large {
  background: linear-gradient(135deg, rgba(67, 102, 59, 0.2), rgba(212, 165, 123, 0.2));
  border-color: var(--color-wood-light);
  transform: scale(1.15) rotate(10deg);
}

.detail-card:hover .detail-icon-large img {
  filter: drop-shadow(0 8px 16px rgba(67, 102, 59, 0.2));
  transform: scale(1.1);
}

.detail-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 0 0 15px;
  font-weight: 700;
}

.detail-card p {
  color: var(--color-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   8.5 GALLERY PREVIEW SECTION
   ============================================ */
.gallery-preview {
  padding: 100px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 50%, #faf8f4 100%);
  position: relative;
  overflow: hidden;
}

.gallery-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.gallery-preview::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-subtitle {
  text-align: center;
  color: var(--color-light);
  font-size: 1.15rem;
  margin-bottom: 60px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.gallery-preview-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: block;
  border: 1px solid rgba(212, 165, 123, 0.2);
}

.gallery-preview-img:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(67, 102, 59, 0.2);
  border-radius: 18px;
  border-color: var(--color-wood-light);
}

.preview-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   8.5 FINAL CTA SECTION
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #2f4d2a 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1.15rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;

  opacity: 0.98;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-final .btn {
  background: white;
  color: var(--color-primary);
  border-color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-final .btn:hover {
  background: var(--color-wood-light);
  color: white;
  border-color: var(--color-wood-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.cta-final .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: none;
}

.cta-final .btn-outline:hover {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ============================================
   8.6 CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.form-column h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.form-column p {
  color: var(--color-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.98rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.98rem;
  font-family: 'Open Sans', sans-serif;
  transition: all var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(67, 102, 59, 0.1);
  background: #faf8f4;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-success,
.form-error {
  display: none;
  padding: 18px 20px;
  margin: 25px 0;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  border-left: 4px solid;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

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

.info-card {
  background: linear-gradient(135deg, #faf8f4, #fff);
  padding: 35px 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--transition);
}

.info-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(67, 102, 59, 0.12);
  transform: translateX(5px);
}

.info-card:hover::before {
  transform: scaleY(1);
}

.info-card h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.info-card p {
  color: var(--color-light);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   8.7 GALLERY MODERN SECTION
   ============================================ */
.realizations-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #faf8f4 0%, #fff 50%, #faf8f4 100%);
  position: relative;
}

.realizations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-wood-light) 10%, var(--color-wood-light) 90%, transparent);
  opacity: 0.3;
}

.realizations-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 123, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.gallery-item-modern {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  height: 300px;
  background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(212, 165, 123, 0.15);
}

.gallery-item-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 102, 59, 0.35), rgba(107, 68, 35, 0.25));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
  pointer-events: none;
}

.gallery-item-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}

.gallery-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.gallery-item-modern:hover {
  box-shadow: 0 35px 80px rgba(67, 102, 59, 0.2);
  transform: translateY(-12px) scale(1.03);
  border-radius: 20px;
  border-color: var(--color-wood-light);
}

.gallery-item-modern:hover::before {
  opacity: 1;
}

.gallery-item-modern:hover::after {
  opacity: 1;
}

.gallery-item-modern:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* ============================================
   8.8 ABOUT CONTENT & SERVICES
   ============================================ */
.about-content {
  padding: 60px 20px;
  background: white;
}

.services-section {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #f9fafb, #fff);
}

/* ============================================
   9. FOOTER STYLES
   ============================================ */
footer {
  background: linear-gradient(135deg, #2a3530 0%, #1f2622 100%);
  color: #e0e0e0;
  padding: 0;
  border-top: 3px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(67, 102, 59, 0.03),
    rgba(67, 102, 59, 0.03) 1px,
    transparent 1px,
    transparent 100px
  );
  pointer-events: none;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 60px 0 40px;
}

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

.footer-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, white, #d0d0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 0;
}

.footer-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.footer-links li a::before {
  content: '›';
  margin-right: 8px;
  color: var(--color-primary);
  font-weight: bold;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links li a:hover::before {
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8b8b8;
}

.contact-item strong {
  color: white;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: white;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(67, 102, 59, 0.2);
  border: 2px solid rgba(67, 102, 59, 0.4);
  border-radius: 50%;
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 102, 59, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-primary-light);
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.divider {
  color: #666;
  font-weight: 300;
}

.footer-credit {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* ============================================
   10. FORM STYLES
   ============================================ */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 12px 15px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"],
button[type="submit"],
.btn-submit {
  padding: 12px 30px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

.form-success {
  padding: 12px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 4px;
  display: none;
}

.form-error {
  padding: 12px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  display: none;
}

/* ============================================
   11. CONTACT PAGE STYLES
   ============================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  background-color: #fff;
}

.contact-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 0 22px rgba(41, 45, 51, 0.2);
}

.contact-form {
  padding: 30px;
  background-color: var(--color-secondary);
  border-radius: 8px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* ============================================
   12. GALLERY STYLES
   ============================================ */
.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  background-color: #fff;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50px;
  background-color: var(--color-border);
  box-shadow: 0 0 22px rgba(41, 45, 51, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.tall {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.gallery-header h1 {
  margin-bottom: 15px;
}

.gallery-header p {
  font-size: 1.125rem;
  color: var(--color-light);
}

/* ============================================
   13. ABOUT/SERVICES PAGE STYLES
   ============================================ */
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-header img {
  max-width: 400px;
  height: auto;
  margin: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  padding: 30px;
  background-color: var(--color-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

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

.service-card p {
  color: var(--color-light);
  line-height: 1.8;
}

/* ============================================
   14. TESTIMONIALS & SOCIAL PROOF
   ============================================ */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 100%);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: var(--color-primary);
  opacity: 0.15;
  font-weight: 700;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-light);
  margin-top: 3px;
}

/* ============================================
   14.1 MATERIALS SHOWCASE
   ============================================ */
.materials-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.materials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.material-card {
  background: linear-gradient(135deg, #faf8f4, #fff);
  padding: 35px 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(67, 102, 59, 0.15);
  border-color: var(--color-primary);
}

.material-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-wood-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.material-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.material-card p {
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
}

/* ============================================
   14.2 TRUST BADGES SECTION
   ============================================ */
.trust-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 100%);
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(67, 102, 59, 0.2);
}

.badge-text {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
  min-width: 120px;
}

.badge-subtext {
  font-size: 0.85rem;
  color: var(--color-light);
}

/* ============================================
   14.3 TEAM/EXPERTISE SECTION
   ============================================ */
.expertise-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.expertise-item {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #faf8f4, #fff);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(67, 102, 59, 0.12);
  border-color: var(--color-primary);
}

.expertise-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-wood-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.expertise-label {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 8px;
}

.expertise-description {
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
}

/* ============================================
   14.4 BEFORE/AFTER STYLE
   ============================================ */
.before-after-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-width: 500px;
  margin: 0 auto;
}

.before-after-img {
  position: relative;
  width: 100%;
  height: 400px;
}

.before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-label {
  position: absolute;
  top: 15px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 15px;
  background: rgba(67, 102, 59, 0.9);
  color: white;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

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

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

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ============================================
   15. ACCESSIBILITY
   ============================================ */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(71, 138, 201, 0.1);
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   16. RESPONSIVE - TABLET (991px)
   ============================================ */
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 3.125rem;
  }

  .hero-minimal {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 20px;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-image-full {
    height: 350px;
  }

  .section-title {
    font-size: 2rem;
  }

  .steps-container {
    gap: 30px;
  }

  .step-arrow {
    display: none !important;
  }

  /* New sections responsive */
  .expertise {
    padding: 70px 20px;
  }

  .expertise-grid {
    gap: 24px;
  }

  .stats-section {
    padding: 70px 20px;
  }

  .stats-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .materials {
    padding: 70px 20px;
  }

  .materials-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .texture-showcase {
    padding: 70px 20px;
  }

  .texture-grid {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .texture-card {
    height: 240px;
  }

  .craftsmanship-details {
    padding: 70px 20px;
  }

  .details-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 40px 30px;
  }

  /* New responsive layouts */
  .expertise-layout {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .expertise-right {
    gap: 20px;
  }

  .expertise-item {
    padding: 24px 25px;
  }

  .features-asymmetric {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-featured {
    padding: 40px 35px;
  }

  .feature-accent {
    min-height: 150px;
    padding: 30px;
  }

  .stats-minimalist {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .materials-showcase {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .material-feature {
    padding: 28px;
    min-height: 220px;
  }

  .header-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-basis: 100%;
    margin-top: 10px;
  }

  nav {
    flex-grow: 0;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(67, 102, 59, 0.1);
    border-bottom-width: 0;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  .logo {
    max-width: 120px;
  }

  .header-links {
    display: flex;
    gap: 15px;
    margin-left: auto;
    flex-wrap: nowrap;
    order: 3;
  }

  .header-link {
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .header-link img {
    width: 18px;
    height: 18px;
  }

  .header-link span {
    display: inline;
  }

  nav {
    display: flex;
  }

  nav ul {
    flex-direction: row;
    position: static;
    background: none;
    border-top: none;
    box-shadow: none;
    display: flex;
    z-index: auto;
  }

  nav ul.active {
    display: flex;
    animation: none;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav a {
    padding: 12px 18px;
    border-bottom: 0;
    font-size: 0.95rem;
    font-weight: 600;
    width: auto;
  }

  nav a::before {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .hero-minimal {
    padding: 35px 15px;
    gap: 25px;
  }

  .hero-title-main {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image-full {
    height: 220px;
  }

  .btn-large {
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-image {
    height: 400px;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .gallery-modern {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .gallery-item-modern {
    height: 250px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 45px 0 35px;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid #e8e8e8;
    padding: 1rem 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 0 2rem;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-text {
    padding: 1rem 0;
  }
}

/* ============================================
   17. RESPONSIVE - MOBILE (575px)
   ============================================ */
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 30px 15px;
    gap: 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-images {
    grid-template-rows: 200px 200px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .header-content {
    padding: 12px 10px;
    gap: 8px;
    justify-content: flex-start;
  }

  .logo {
    max-width: 100px;
    flex-shrink: 0;
  }

  nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, #2f4d2a 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    border-bottom: 3px solid #d4a57b;
  }

  nav.active {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

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

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  nav li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  nav a::before {
    display: none;
  }

  nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4a57b;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 24px;
  }

  nav a:active::after,
  nav a:hover::after {
    transform: scaleY(1);
  }

  .header-links {
    display: none;
    gap: 8px;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .header-link {
    gap: 4px;
    padding: 6px 8px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .header-link span {
    display: none;
  }

  .header-link img {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .hamburger {
    display: flex;
    order: 3;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero-minimal {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 15px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    border-bottom: 2px solid var(--color-wood-light);
  }

  .hero-image-full {
    height: 280px;
  }

  footer {
    padding: 20px 15px;
  }

  .footer-text {
    font-size: 0.75rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 30px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-bottom {
    padding: 20px 0;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }

  .footer-bottom-links {
    font-size: 0.8rem;
    gap: 10px;
  }

  .divider {
    font-size: 0.8rem;
  }

  .footer-credit {
    font-size: 0.75rem;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .contact-image {
    height: 300px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

    .contact-form-section {
    padding: 60px 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 16px;
  }

  .info-card {
    padding: 20px;
  }

  .gallery-modern {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item-modern {
    height: 220px;
  }

  .realizations-section {
    padding: 60px 15px;
  }

  /* New sections mobile responsive */
  .expertise {
    padding: 50px 15px;
  }

  .expertise-grid {
    gap: 20px;
  }

  .stats-section {
    padding: 50px 15px;
  }

  .stats-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .materials {
    padding: 50px 15px;
  }

  .materials-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .texture-showcase {
    padding: 50px 15px;
  }

  .texture-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .texture-card {
    height: 220px;
  }

  .texture-overlay h3 {
    font-size: 1.3rem;
  }

  .texture-overlay p {
    font-size: 0.85rem;
  }

  .craftsmanship-details {
    padding: 50px 15px;
  }

  .details-grid {
    gap: 24px;
  }

  .detail-card {
    padding: 35px 25px;
  }

  .detail-icon-large {
    width: 85px;
    height: 85px;
  }

  .detail-card h3 {
    font-size: 1.2rem;
  }

  .detail-card p {
    font-size: 0.9rem;
  }

  .material-item {
    border-radius: 12px;
  }

  .material-image {
    height: 150px;
  }

  .material-placeholder {
    font-size: 3rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 30px 15px;
    gap: 15px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-header {
    padding: 0 15px;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }

  .about-section {
    padding: 30px 15px;
  }

  .about-header img {
    max-width: 90%;
  }

  .service-card {
    padding: 20px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .material-card {
    padding: 25px 20px;
  }

  .expertise-item {
    padding: 20px;
  }

  .trust-badges {
    gap: 25px;
  }

  .badge-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .before-after-img {
    height: 300px;
  }

  .container {
    padding: 0 1rem;
  }
}
