

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Lato:wght@400;700&display=swap');

/* --- Root Variables & Global Styles --- */
:root {
  --bg-canvas: #f7f5f2;      /* Warm, textured off-white */
  --bg-card: #ffffff;        /* Clean white for cards */
  --text-primary: #3d352e;   /* Deep, rich brown (sepia) */
  --text-secondary: #7a6c62; /* Softer, lighter brown */
  --accent-primary: #8a0707; /* Deep burgundy/maroon */
  --accent-secondary: #b8860b;/* Muted, elegant gold */
  --border-color: #e2dcd6;
  
  --font-serif: 'Lora', serif;
  --font-sans: 'Lato', sans-serif;

  --border-radius: 8px;
  --transition: all 0.3s ease-in-out;
  --shadow-light: 0 5px 20px rgba(61, 53, 46, 0.07);
  --shadow-medium: 0 8px 30px rgba(61, 53, 46, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}
.cta-buttons{
display: flex;
padding: 1rem 0;
width: fit-content;
  gap: 1rem;
}
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
section.is-visible { opacity: 1; transform: translateY(0); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-primary); line-height: 1.3; }
h2 { font-size: clamp(2rem, 5vw, 2.5rem); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Hero Section --- */
.hero { background-color: var(--bg-card); padding: 3rem 0; }
.hero-container { max-width: 1200px; display: flex; align-items: center; padding: 0 3rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.25rem); }
.hero-title .highlight { color: var(--accent-secondary); }
.hero-subtitle { font-size: 1.1rem; margin: 1.5rem 0; }
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 2rem 0; }
.feature-item { display: flex; align-items: center; gap: 0.5rem; }
.feature-icon { color: var(--accent-primary); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-primary, .cta-secondary, .submit-btn {
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.cta-primary, .submit-btn { background-color: var(--accent-primary); color: #fff; }
.cta-primary:hover, .submit-btn:hover { background-color: #6d0505; transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.cta-secondary { background-color: transparent; color: var(--accent-primary); border-color: var(--accent-primary); }
.cta-secondary:hover { background-color: var(--accent-primary); color: #fff; transform: translateY(-2px); }

/* --- Service Overview --- */
.overview-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.overview-stats { display: flex; justify-content: space-around; text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--accent-primary); }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); }

/* --- Antique Types Section --- */
.antique-types { background-color: var(--bg-card); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.type-card { text-align: center; }
.type-icon img { max-height: 260px; margin-bottom: 1rem; }

/* --- Moving Process --- */
.process-timeline { position: relative; max-width: 800px; margin: 3rem auto 0; padding: 0 1rem; }
.process-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border-color); }
.process-step { position: relative; padding-left: 60px; margin-bottom: 2.5rem; }
.step-number { position: absolute; left: 0; top: 0; width: 50px; height: 50px; background: var(--bg-canvas); border: 2px solid var(--border-color); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.5rem; color: var(--accent-secondary); font-weight: 700; }
.step-content { background: var(--bg-card); padding: 1.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }

/* --- Specialized Equipment --- */
.specialized-equipment { background-color: var(--bg-card); }
.equipment-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.equipment-item { border-left: 3px solid var(--accent-secondary); padding-left: 1rem; margin-bottom: 1.5rem; }
.equipment-item h4 { font-family: var(--font-sans); font-size: 1.1rem; }

/* --- Insurance & Protection --- */
.protection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.protection-card { background: var(--bg-card); padding: 2rem; border-radius: var(--border-radius); box-shadow: var(--shadow-light); text-align: center; }
.protection-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* --- Antique Tips --- */
.antique-tips { background-color: var(--bg-card); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.tip-card { position: relative; background: var(--bg-canvas); padding: 2rem; border-radius: var(--border-radius); }
.tip-number { position: absolute; top: 1rem; right: 1.5rem; font-size: 3rem; font-family: var(--font-serif); font-weight: 700; color: rgba(61, 53, 46, 0.08); }

/* --- Service Areas & Testimonials --- */
.areas-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.area-item { background: var(--bg-card); padding: 1rem; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.testimonials { background-color: var(--bg-card); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--bg-canvas); padding: 2rem; border-radius: var(--border-radius); border-top: 4px solid var(--accent-secondary); }
.stars { color: var(--accent-secondary); font-size: 1.25rem; margin-bottom: 1rem; }
.testimonial-author { margin-top: 1rem; font-style: italic; }

/* --- FAQ Section --- */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); overflow: hidden; }
.faq-item h3 { font-family: var(--font-sans); font-size: 1.1rem; padding: 1.25rem; margin: 0; cursor: pointer; position: relative; }
.faq-item h3::after { content: '+'; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent-primary); transition: transform 0.2s; }
.faq-item.active h3::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { max-height: 0; overflow: hidden; margin: 0; padding: 0 1.25rem; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active p { max-height: 200px; padding-bottom: 1.25rem; }
.cta-content{
  max-width: 500px;
  margin: 0 auto;
}
/* --- CTA & Quote Form --- */
.cta-section { background-color: var(--text-primary); color: #fff; text-align: center; }
.cta-content h2, .cta-content p { color: #fff; }
.quote-form { background-color: var(--bg-card); }
.quote-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.quote-benefits { margin-top: 1.5rem; }
.quote-form-container { background: var(--bg-canvas); padding: 2rem; border-radius: var(--border-radius); }
.form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { margin-bottom: 0.5rem; font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border-color); border-radius: 4px; }
.form-note { font-size: 0.8rem; text-align: center; margin-top: 1rem; }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero-content, .overview-content, .equipment-content, .areas-content, .pricing-content, .quote-content { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .form-row { flex-direction: column; }
}
