@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url(../fonts/WorkSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary-color: #1a3a52;
  --secondary-color: #c9a961;
  --accent-color: #2d5f7f;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Work Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary-color);
}

.logo img {
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}

main {
  flex: 1;
}

section {
  padding: 5rem 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.accent-text {
  color: var(--secondary-color);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.hero-overlay-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}

.hero-overlay-badge i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.hero-overlay-badge span {
  font-weight: 600;
  color: var(--primary-color);
}

.services-section {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
  border: none;
}

.service-card.featured .service-icon,
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li,
.service-card.featured .service-price {
  color: var(--bg-white);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.service-card.featured .service-price {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.features-section {
  background: var(--bg-light);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary-color);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-light);
  line-height: 1.6;
}

.features-visual {
  position: relative;
}

.features-image-stack {
  position: relative;
  height: 500px;
}

.stack-image {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.stack-image.main {
  width: 80%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 1;
}

.stack-image.accent {
  width: 60%;
  height: 300px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 8px solid var(--bg-white);
}

.features-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.process-section {
  background: var(--bg-white);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.process-step.reverse {
  grid-template-columns: auto 1fr auto;
  direction: rtl;
}

.process-step.reverse > * {
  direction: ltr;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.step-visual {
  width: 200px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-connector {
  text-align: center;
  padding: 1rem 0;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.not-for-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
}

.not-for-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.not-for-content .section-tag {
  color: var(--secondary-color);
}

.not-for-content .section-title {
  color: var(--bg-white);
}

.not-for-content .section-desc {
  color: rgba(255, 255, 255, 0.9);
}

.not-for-list {
  list-style: none;
  margin: 2rem 0;
}

.not-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.not-for-list li:last-child {
  border-bottom: none;
}

.not-for-list i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.not-for-list span {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.not-for-cta {
  margin-top: 2rem;
}

.not-for-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.not-for-cta .btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.not-for-cta .btn-primary:hover {
  background: var(--bg-white);
}

.not-for-visual {
  position: relative;
}

.not-for-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.not-for-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 58, 82, 0.95), transparent);
  padding: 3rem 2rem 2rem;
}

.overlay-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.2;
}

.reviews-section {
  background: var(--bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
}

.review-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.review-rating {
  margin-bottom: 1rem;
}

.review-rating i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.review-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card.featured .review-text {
  color: rgba(255, 255, 255, 0.95);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.review-card.featured .author-info h4 {
  color: var(--bg-white);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-card.featured .author-info span {
  color: rgba(255, 255, 255, 0.8);
}

.faq-section {
  background: var(--bg-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-content {
  position: sticky;
  top: 120px;
}

.faq-cta {
  margin-top: 2rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  flex: 1;
}

.faq-item summary i {
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-section {
  background: var(--bg-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-hours {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-hours h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours ul {
  list-style: none;
}

.contact-hours li {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-footer {
  background: var(--primary-color);
  color: var(--bg-white);
  margin-top: auto;
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: var(--bg-white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary-color);
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero-container,
  .features-layout,
  .not-for-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-content {
    position: static;
  }

  .step-visual {
    display: none;
  }

  .process-step,
  .process-step.reverse {
    grid-template-columns: auto 1fr;
    direction: ltr;
  }

  .hero-image-wrapper img {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 0;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .header-notice {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
  }

  .nav-list.active {
    display: flex;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-image-wrapper img {
    height: 350px;
  }

  .features-image-stack {
    height: 400px;
  }

  .stack-image.main {
    height: 320px;
  }

  .stack-image.accent {
    height: 240px;
  }

  .not-for-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.thanks-main::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-container {
  max-width: 700px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thanks-content {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.thanks-logo {
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.thanks-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thanks-message,
.thanks-text,
.thanks-text-secondary {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thanks-text-secondary {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
  background: rgba(201, 169, 97, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.thanks-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.thanks-info .info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thanks-info .info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.thanks-info .info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.thanks-info .info-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .thanks-main {
    padding: 2rem 1rem;
  }
  
  .thanks-content {
    padding: 2rem 1.5rem;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-message,
  .thanks-text {
    font-size: 1.1rem;
  }
  
  .thanks-info {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .thanks-actions .btn-primary,
  .thanks-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.legal-main {
  flex: 1;
  background: var(--bg-light);
  padding: 3rem 0 5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.legal-content strong {
  font-weight: 600;
  color: var(--primary-color);
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.signature-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.contact-page-main {
  flex: 1;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.contact-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-content .hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-details-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-info-card .note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1rem 0;
}

.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.hours-list li:last-child {
  border-bottom: none;
}

.contact-form-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-form .checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.contact-form .checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-form .btn-submit:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.map-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.map-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.map-container {
  margin-bottom: 3rem;
}

.directions-info {
  max-width: 1000px;
  margin: 0 auto;
}

.directions-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.direction-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.direction-item h4 i {
  color: var(--secondary-color);
}

.direction-item p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-contact-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.faq-contact-layout {
  max-width: 900px;
  margin: 0 auto;
}

.faq-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-contact-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-contact-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.faq-contact-section .faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-contact-section .faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-contact-section .faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-contact-section .faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.faq-contact-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-contact-section .faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  flex: 1;
}

.faq-contact-section .faq-item summary i {
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-contact-section .faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-contact-section .faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.faq-contact-section .faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-contact-section .faq-answer li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 30px 15px;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
  }
  
  .legal-content h3 {
    font-size: 1.2rem;
  }
  
  .contact-hero-content h1 {
    font-size: 2.25rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .directions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-content h1 {
    font-size: 1.75rem;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .form-header h2 {
    font-size: 1.75rem;
  }
}