
/* === CSS RESET & VARIABLES === */
:root {
  --pd-primary: #475569;
  --pd-primary-dark: #334155;
  --pd-bg: #ffffff;
  --pd-bg-alt: #f8fafc;
  --pd-text: #0f172a;
  --pd-text-light: #94a3b8;
  --pd-border: #e2e8f0;
  --pd-accent: #64748b;
  --pd-round: 8px;
  --pd-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Georgia, 'Garamond', serif;
  color: var(--pd-text);
  background: var(--pd-bg);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Noto Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--pd-text);
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--pd-text);
}

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

a:hover {
  color: var(--pd-primary-dark);
}

/* === CONTAINERS === */
.wqm-container-19 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wqm-wrapper-33 {
  width: 100%;
}

/* === HEADER === */
header {
  background: #f5f1e8;
  border-bottom: 2px solid var(--pd-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.wqm-header-94 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wqm-logo-99 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--pd-text);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  transition: color 0.3s ease;
}

.wqm-logo-99:hover {
  color: var(--pd-primary);
}

.wqm-logo-99 img {
  height: 40px;
  width: auto;
}

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

nav a {
  color: var(--pd-text);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pd-primary);
  transition: width 0.3s ease;
}

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

.wqm-btn-primary-44 {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--pd-primary);
  color: #fff;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wqm-btn-primary-44:hover {
  background: var(--pd-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.wqm-nav-item-30 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.wqm-nav-item-30 span {
  width: 25px;
  height: 3px;
  background: var(--pd-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.wqm-nav-list-77 {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #f5f1e8;
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  flex-direction: column;
  gap: 1rem;
}

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

.wqm-nav-list-77 a {
  color: var(--pd-text);
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
}

/* === HERO SECTION === */
.wqm-hero-89 {
  background: linear-gradient(135deg, #d4a574 0%, #c68c5d 100%);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--pd-primary);
}

.wqm-hero-89::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="vintage" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="80" height="80" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23vintage)"/></svg>');
  z-index: 0;
}

.wqm-hero-89 .wqm-container-19 {
  position: relative;
  z-index: 1;
}

.wqm-hero-text-83 {
  max-width: 650px;
}

.wqm-hero-89 h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: Georgia, serif;
  letter-spacing: -2px;
}

.wqm-hero-89 p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.98;
  font-style: italic;
}

/* === FEATURE GRID === */
.wqm-grid-44 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

.wqm-grid-44 .wqm-card-94 {
  text-align: center;
  padding: 2.5rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.wqm-grid-44 .wqm-card-94:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--pd-primary);
}

.wqm-grid-44 img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.wqm-grid-44 h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.wqm-grid-44 p {
  color: var(--pd-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* === SERVICE CARDS === */
.wqm-card-link-74 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.wqm-card-link-74::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--pd-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.wqm-card-link-74:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--pd-primary);
}

.wqm-card-link-74:hover::before {
  transform: scaleX(1);
}

.wqm-card-link-74 h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.wqm-card-link-74 p {
  color: var(--pd-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.wqm-category-45 {
  display: inline-block;
  background: #f5f1e8;
  color: var(--pd-text);
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid var(--pd-border);
  letter-spacing: 0.5px;
}

/* === TESTIMONIAL CARDS === */
.wqm-article-97 {
  background: #f5f1e8;
  border-radius: 0;
  padding: 2.5rem;
  margin: 1.5rem 0;
  border-left: 5px solid var(--pd-primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.wqm-article-97::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 1rem;
  font-size: 4rem;
  color: var(--pd-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.wqm-article-97:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.wqm-tag-16 {
  color: #d4a574;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.wqm-article-97 p {
  color: var(--pd-text);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: Georgia, serif;
}

.wqm-article-meta-42 {
  color: var(--pd-text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* === FAQ ACCORDION === */
.wqm-blog-list-47 {
  margin: 1.5rem 0;
  border: 1px solid #ddd;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.wqm-blog-list-47 h3 {
  cursor: pointer;
  padding: 1.5rem;
  background: #f5f1e8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
  border-bottom: 1px solid #ddd;
  font-size: 1.15rem;
}

.wqm-blog-list-47 h3:hover {
  background: #ebe5d9;
}

.wqm-blog-list-47 h3::after {
  content: '▼';
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.wqm-blog-list-47 h3.active {
  background: var(--pd-primary);
  color: #fff;
  border-bottom-color: var(--pd-primary);
}

.wqm-blog-list-47 h3.active::after {
  transform: rotate(-180deg);
}

.wqm-blog-list-47 p {
  padding: 1.5rem;
  background: #fff;
  margin: 0;
  display: none;
  color: var(--pd-text-light);
  border-top: 1px solid #ddd;
}

.wqm-blog-list-47 p.active {
  display: block;
}

/* === CONTACT FORM === */
.wqm-form-97 {
  margin: 2rem 0;
}

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

.wqm-form-97 label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--pd-text);
  font-size: 0.95rem;
}

.wqm-form-97 input,
.wqm-form-97 textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: Georgia, serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.wqm-form-97 input:focus,
.wqm-form-97 textarea:focus {
  outline: none;
  border-color: var(--pd-primary);
  box-shadow: inset 0 0 0 2px rgba(212, 165, 116, 0.1);
}

.wqm-form-97 textarea {
  min-height: 150px;
  resize: vertical;
}

.wqm-form-label-77 {
  color: #c41e3a;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.wqm-form-input-32 {
  border-color: #c41e3a !important;
}

.wqm-form-btn-27 {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
  display: none;
}

.form-success.active {
  display: block;
}

/* === COOKIE BANNER === */
.wqm-cookie-banner-11 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5f1e8;
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--pd-primary);
  z-index: 500;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.cookie-banner.active {
  display: flex;
}

.wqm-cookie-banner-11 p {
  margin: 0;
  color: var(--pd-text);
  font-size: 0.9rem;
}

.wqm-cookie-banner-11 .btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.wqm-cookie-banner-11 button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wqm-cookie-banner-11 .accept {
  background: var(--pd-primary);
  color: #fff;
}

.wqm-cookie-banner-11 .accept:hover {
  background: var(--pd-primary-dark);
}

.wqm-cookie-banner-11 .settings {
  background: transparent;
  border: 1px solid var(--pd-border);
  color: var(--pd-text);
}

.wqm-cookie-banner-11 .settings:hover {
  background: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay.active {
  display: flex;
}

.wqm-cookie-text-72 {
  background: var(--pd-bg);
  border-radius: 0;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--pd-primary);
}

.wqm-cookie-text-72 h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.wqm-cookie-text-72 .toggle-group {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.wqm-cookie-text-72 .toggle-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 600;
}

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

.wqm-cookie-text-72 .modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.wqm-cookie-text-72 button {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wqm-cookie-text-72 .accept {
  background: var(--pd-primary);
  color: #fff;
}

.wqm-cookie-text-72 .accept:hover {
  background: var(--pd-primary-dark);
}

.wqm-cookie-text-72 .cancel {
  background: transparent;
  border: 1px solid #ddd;
  color: var(--pd-text);
}

.wqm-cookie-text-72 .cancel:hover {
  background: #f5f1e8;
}

/* === SCROLL TOP BUTTON === */
.wqm-btn-secondary-50 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--pd-primary);
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.wqm-btn-secondary-50:hover {
  background: var(--pd-primary-dark);
  transform: translateY(-3px);
}

/* === FADE-IN ANIMATION === */
.wqm-card-94 {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* === SECTIONS === */
section {
  padding: 4.5rem 0;
}

section:nth-child(even) {
  background: #f5f1e8;
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: Georgia, serif;
}

/* === TEXT SECTIONS === */
.wqm-article-body-85 {
  padding: 2rem 0;
  line-height: 1.9;
}

.wqm-article-body-85 h3 {
  margin: 2.5rem 0 1rem;
  font-family: Georgia, serif;
}

.wqm-article-body-85 p {
  margin-bottom: 1.5rem;
}

/* === FOOTER === */
footer {
  background: #3c3c3c;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 3px solid var(--pd-primary);
}

footer .wqm-container-19 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

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

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .wqm-container-19 {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .wqm-hero-89 {
    padding: 3.5rem 0;
  }

  .wqm-hero-89 h1 {
    font-size: 2.5rem;
  }

  .wqm-grid-44 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  footer .wqm-container-19 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  header {
    padding: 1rem 0;
  }

  .wqm-nav-item-30 {
    display: flex;
  }

  nav {
    display: none;
  }

  .wqm-btn-primary-44 {
    display: none;
  }

  .wqm-hero-89 {
    padding: 2.75rem 0;
  }

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

  .wqm-hero-89 p {
    font-size: 1rem;
  }

  .wqm-grid-44 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

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

@media (max-width: 768px) {
  .wqm-header-94 {
    padding: 1rem;
  }

  .wqm-logo-99 {
    font-size: 1.1rem;
  }

  .wqm-logo-99 img {
    height: 32px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .wqm-hero-89 {
    padding: 2.25rem 0;
  }

  .wqm-hero-89 h1 {
    font-size: 1.6rem;
  }

  .wqm-hero-89 p {
    font-size: 0.95rem;
  }

  .wqm-container-19 {
    padding: 0 1rem;
  }

  .wqm-card-link-74 {
    padding: 1.75rem;
  }

  .wqm-article-97 {
    padding: 1.75rem;
  }

  .wqm-form-97 button {
    width: 100%;
  }

  .wqm-cookie-banner-11 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .wqm-cookie-banner-11 .btn-group {
    width: 100%;
  }

  .wqm-cookie-banner-11 button {
    flex: 1;
  }

  .wqm-btn-secondary-50 {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  .wqm-hero-89 {
    padding: 1.75rem 0;
  }

  .wqm-hero-89 h1 {
    font-size: 1.4rem;
  }

  .wqm-hero-89 p {
    font-size: 0.9rem;
  }

  .wqm-grid-44 img {
    width: 50px;
    height: 50px;
  }

  section {
    padding: 2rem 0;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .wqm-blog-list-47 h3 {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .wqm-blog-list-47 p {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .wqm-container-19 {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1rem;
  }

  body {
    font-size: 15px;
  }

  .wqm-hero-89-content {
    max-width: 100%;
  }

  nav {
    gap: 1rem;
  }

  .wqm-form-97 input,
  .wqm-form-97 textarea {
    font-size: 16px;
  }

  footer .wqm-container-19 {
    gap: 1rem;
  }
}

/* === PRINT STYLES === */
@media print {
  header, footer, .wqm-cookie-banner-11, .wqm-btn-secondary-50 {
    display: none !important;
  }

  body {
    background: #fff;
  }

  a {
    color: #000;
  }

  .wqm-btn-primary-44 {
    border: 1px solid #000;
    color: #000;
  }

  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}
