/* ===== CSS Variables & Design System ===== */
:root {
  --color-bg: #FAF7F4;
  --color-bg-alt: #F3EDE7;
  --color-text: #2D2420;
  --color-text-muted: #6B5B50;
  --color-primary: #8B6F5E;
  --color-secondary: #C9A88C;
  --color-accent: #D4A574;
  --color-white: #FFFFFF;
  --color-border: #E8DDD4;
  --color-overlay: rgba(45, 36, 32, 0.55);

  --font-display: 'Frank Ruhl Libre', serif;
  --font-body: 'Heebo', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(45, 36, 32, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 36, 32, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 36, 32, 0.12);

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

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

section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo span {
  color: var(--color-accent);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.header-contact a {
  color: var(--color-text-muted);
}

.header-contact a:hover {
  color: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
  font-weight: 500;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #7A6050;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #C49560;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-bg);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.header-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  right: 0;
  transition: all var(--transition);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; width: 70%; }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 50%; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); bottom: auto; top: 50%; width: 100%; }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero-home .hero-bg {
  background-image: url('_uploads/ai_77e575fc457e7483.jpg');
}

.hero-about .hero-bg {
  background-image: url('_uploads/ai_1f2c05fb26bc95ec.jpg');
}

.hero-services .hero-bg {
  background-image: url('_uploads/ai_57477bf02e610359.jpg');
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-sub {
  min-height: 50vh;
}

/* ===== Service Menu Section ===== */
.service-menu {
  background: var(--color-bg-alt);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.service-card .service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
}

.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

/* ===== Gallery Section ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}

.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-secondary);
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border));
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 36, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-white);
  font-family: var(--font-display);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ===== Location / CTA Section ===== */
.location-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.location-section h2 {
  color: var(--color-white);
}

.location-section h2::after {
  background: var(--color-accent);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.location-item h4 {
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.location-item p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0.7;
}

/* ===== About Page ===== */
.story-section {
  padding: 5rem 0;
}

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

.story-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* Magazine-style multi-column layout for about page */
.magazine-layout {
  column-count: 2;
  column-gap: 3rem;
  column-rule: 1px solid var(--color-border);
}

.magazine-layout p {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.pull-quote {
  column-span: all;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-primary);
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  margin: 2rem 0;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== Services Page ===== */
.services-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.why-choose {
  background: var(--color-bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 111, 94, 0.1);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== Funnel Page ===== */
.funnel-section {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.funnel-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.funnel-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition);
}

.progress-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.progress-dot.completed {
  background: var(--color-accent);
}

.funnel-page {
  display: none;
}

.funnel-page.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.funnel-page h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.funnel-page .subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.funnel-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.funnel-option {
  padding: 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-weight: 500;
}

.funnel-option:hover {
  border-color: var(--color-secondary);
  background: var(--color-bg-alt);
}

.funnel-option.selected {
  border-color: var(--color-primary);
  background: rgba(139, 111, 94, 0.05);
}

.funnel-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== Quote Flow ===== */
.quote-section {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.quote-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.quote-step h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.quote-step .subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.quote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--color-border);
  color: var(--color-text-muted);
}

.step-num.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.step-num.completed {
  background: var(--color-accent);
  color: var(--color-white);
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--color-border);
}

.step-line.completed {
  background: var(--color-accent);
}

.checkbox-group {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.checkbox-group label:hover {
  border-color: var(--color-secondary);
  background: var(--color-bg-alt);
}

.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

/* ===== FAQ Page ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-arrow {
  transition: transform var(--transition);
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ===== Privacy Page ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-content p,
.privacy-content ul {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.privacy-content ul {
  padding-right: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--color-primary);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-signature {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.6;
  margin-top: 1rem;
}

.footer-signature a {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px dotted currentColor;
}

.footer-signature a:hover {
  opacity: 1;
}

/* ===== Form Messages ===== */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-message.error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .magazine-layout {
    column-count: 1;
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

  .funnel-wrapper,
  .quote-wrapper {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
