.text-body,
.text-label,
body {
  color: var(--fg);
}
.btn-ghost::after,
.card-featured::after {
  position: absolute;
  background: var(--gold);
}
:root {
  --bg: #fbf9f5;
  --fg: #111111;
  --muted-bg: #ede8e0;
  --muted-fg: #6b6762;
  --gold: #c9a84c;
  --gold-bright: #e0c878;
  --gold-dark: #a0842c;
  --dark: #0d0d0d;
  --dark-soft: #1a1a1a;
  --white-soft: #f8f6f2;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.18);
  --radius-sm: 10px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --transition-fast: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary,
.btn-secondary {
  height: 52px;
  padding: 0 36px;
  transition: all var(--transition-smooth);
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  font-family: Inter, sans-serif;
  background-color: var(--bg);
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  border: none;
  background: 0 0;
  color: inherit;
  outline: 0;
}
.preloader-text,
.text-hero,
.text-hero-large,
.text-section-heading,
.text-subsection,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.text-hero {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.93;
  font-weight: 500;
}
.text-hero-large {
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.88;
  font-weight: 500;
}
.text-section-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 400;
}
.text-subsection {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
  font-weight: 400;
}
.text-body {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}
.text-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.text-small {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.italic-accent {
  font-style: italic;
  color: var(--gold);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fg) 0, #2a2a2a 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  border: 1px solid var(--fg);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
}
.btn-ghost,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: 0 0;
  color: var(--fg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.btn-secondary:hover,
.card-luxury:hover,
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0, var(--gold) 100%);
  transform: translateX(-102%);
  transition: transform var(--transition-smooth);
  z-index: 0;
  border-radius: var(--radius-sm);
}
.btn-ghost::after,
.navbar-link::after {
  transition: transform var(--transition-fast);
}
.btn-primary:hover::before,
[data-aos="fade-in-left"].aos-animate,
[data-aos="fade-in-right"].aos-animate {
  transform: translateX(0);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-secondary {
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: var(--radius-sm);
}
.btn-secondary:hover {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
  transform: translateY(-2px);
}
.btn-ghost {
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border: none;
  transition: color var(--transition-fast);
}
.btn-ghost:hover,
.text-accent {
  color: var(--gold);
}
.btn-ghost::after {
  content: "";
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
}
.btn-ghost:hover::after {
  transform: scaleX(1);
}
.card-featured {
  border: 2px solid var(--gold);
  padding: 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.04) 0,
    transparent 100%
  );
  border-radius: var(--radius-md);
  position: relative;
}
.card-featured::after {
  content: "POPULAR";
  top: 16px;
  right: 16px;
  color: #111;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 2px;
}
.input-luxury {
  color: var(--fg);
  transition: border-color var(--transition-fast);
}
.input-luxury::placeholder {
  color: var(--muted-fg);
  opacity: 0.7;
}
.image-grayscale {
  filter: grayscale(0.85) brightness(0.95);
  transition: all var(--transition-slow);
  border-radius: var(--radius-md);
}
.image-grayscale:hover {
  filter: grayscale(0) brightness(1.02);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
}
.accent-line {
  height: 2px;
  width: 3rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: 1px;
}
@keyframes spinNeedle {
  0%,
  100% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(210deg);
  }
}
@keyframes fillArc {
  0%,
  100% {
    stroke-dashoffset: 251;
  }
  60% {
    stroke-dashoffset: 0;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes dotsBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-14px);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #fbf9f5 0, #ede8e0 40%, #f0ebe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
}
.preloader.hidden,
.scroll-to-top {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
  animation: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards fadeInUp;
}
.speedometer-loader {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  position: relative;
}
.speedometer-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}
.speedometer-needle {
  transform-origin: 90px 90px;
  animation: 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite spinNeedle;
}
.speedometer-arc {
  animation: 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite fillArc;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
}
.preloader-text {
  font-size: 2rem;
  color: #111;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  animation: 2.2s ease-in-out infinite pulse;
}
.preloader-subtext {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: #6b6762;
  margin: 0.5rem 0 2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.listing-price,
.navbar-logo {
  font-family: "Playfair Display", serif;
}
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.loading-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  animation: 1.6s infinite dotsBounce;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-luxury:hover::before,
[data-aos].aos-animate {
  opacity: 1;
}
[data-aos="fade-in-up"] {
  transform: translateY(40px);
}
[data-aos="fade-in-up"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-in-left"] {
  transform: translateX(-40px);
}
[data-aos="fade-in-right"] {
  transform: translateX(40px);
}
[data-aos="zoom-in"] {
  transform: scale(0.85);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}
.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 4.5rem;
  transition: all var(--transition-fast);
}
.navbar-sticky.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(251, 249, 245, 0.95);
}
.mobile-nav-menu,
.scroll-to-top,
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}
.navbar-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}
.mobile-nav-link,
.navbar-link {
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: color var(--transition-fast);
  text-decoration: none;
}
.blog-card:hover .blog-card-title,
.breadcrumb a:hover,
.faq-question:hover,
.mobile-nav-link:hover,
.navbar-link:hover,
.navbar-logo:hover,
.recent-post-item:hover,
.stat-number,
.testimonial-card:hover .testimonial-name {
  color: var(--gold-dark);
}
.hero-badge,
.mobile-nav-link,
.navbar-link {
  color: var(--fg);
  text-transform: uppercase;
}
.navbar-menu {
  display: none;
  list-style: none;
  gap: 2.5rem;
}
.navbar-link {
  font-size: 0.8rem;
  position: relative;
  padding: 0.5rem 0;
}
.navbar-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
}
.navbar-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.faq-item.hidden,
.navbar-cta {
  display: none;
}
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--fg);
  transition: all var(--transition-fast);
  border-radius: 1px;
}
.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  background: rgba(251, 249, 245, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav-menu.active {
  display: flex;
}
.mobile-nav-link {
  font-size: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-section {
  margin-top: 4.5rem;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem 7rem;
  background: linear-gradient(
    165deg,
    #fbf9f5 0,
    #ede8e0 30%,
    #f4f0e8 60%,
    #e8e2d6 100%
  );
  overflow: hidden;
}
.hero-bg-shape,
.hero-bg-shape-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape {
  top: -120px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0,
    transparent 70%
  );
  animation: 8s ease-in-out infinite pulse;
}
.hero-bg-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0,
    transparent 70%
  );
  animation: 10s ease-in-out -3s infinite pulse;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 950px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.15);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  margin-bottom: 2rem;
  border-radius: 2px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: 2s ease-in-out infinite pulse;
}
.hero-title {
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  max-width: 580px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--muted-fg);
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-accent-line {
  height: 2px;
  width: 5rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  margin-bottom: 2rem;
  border-radius: 1px;
}
.form-row,
.pricing-grid,
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1) 0,
    rgba(201, 168, 76, 0.03) 100%
  );
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--gold-dark);
  transition: all var(--transition-smooth);
}
.listing-card,
.listing-image {
  border-radius: var(--radius-md);
}
.card-luxury:hover .service-icon-wrap {
  background: var(--gold);
  color: #111;
  transform: rotate(-3deg) scale(1.08);
  box-shadow: var(--shadow-gold);
}
.listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .card-featured,
  .card-luxury {
    padding: 3.5rem;
  }
  .section-padding {
    padding: 6rem 4rem;
  }
  .accent-line {
    width: 4rem;
  }
  .navbar-container {
    padding: 0 4rem;
  }
  .navbar-menu {
    display: flex;
  }
  .navbar-cta {
    display: inline-flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .hero-section {
    padding: 6rem 4rem 9rem;
  }
  .hero-cta-group {
    flex-direction: row;
    gap: 1.25rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}
.listing-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.listing-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.8) brightness(0.9);
  transition: all var(--transition-slow);
}
.listing-card:hover .listing-image {
  filter: grayscale(0) brightness(1.04);
  transform: scale(1.06);
  box-shadow: var(--shadow-xl);
}
.listing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #111;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 5;
  text-transform: uppercase;
}
.listing-info {
  padding: 2rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color var(--transition-fast);
}
.listing-card:hover .listing-info {
  border-bottom-color: var(--gold);
}
.listing-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.listing-specs {
  display: flex;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted-fg);
  flex-wrap: wrap;
}
.listing-specs span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.listing-specs span::before {
  content: "•";
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--muted-fg);
  text-transform: uppercase;
}
.testimonial-name,
.testimonial-text {
  color: var(--fg);
  font-family: "Playfair Display", serif;
}
.testimonial-card {
  padding: 2.5rem;
  border-left: 3px solid rgba(201, 168, 76, 0.2);
  background: var(--bg);
  transition: all var(--transition-smooth);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.testimonial-card:hover {
  border-left: 3px solid var(--gold);
  transform: translateX(4px);
}
.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-question,
.summary-item {
  justify-content: space-between;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.7);
  transition: filter var(--transition-smooth);
  border: 2px solid transparent;
}
.testimonial-card:hover .testimonial-avatar {
  filter: grayscale(0);
  border-color: var(--gold);
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.testimonial-role {
  font-size: 0.7rem;
  color: var(--muted-fg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-title {
  color: var(--fg);
}
.pricing-price {
  color: var(--gold-dark);
  line-height: 1;
}
.pricing-feature::before {
  content: "✓";
  color: var(--gold);
  font-size: 0.8rem;
}
.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all var(--transition-fast);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition-fast);
  user-select: none;
}
.faq-icon,
.footer-stat {
  transition: all var(--transition-fast);
}
.faq-question-text {
  font-family: "Playfair Display", serif;
  flex: 1;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
}
.faq-answer,
.text-muted {
  color: var(--muted-fg);
}
.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-input {
  flex: 1;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 0;
  background: 0 0;
  color: #fff;
  font-size: 1rem;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.newsletter-input:focus {
  border-bottom-color: var(--gold-bright);
}
.footer-section {
  background: linear-gradient(170deg, #0d0d0d 0, #1a1a1a 50%, #111 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-middle,
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  max-width: 320px;
}
.footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
  border-radius: var(--radius-sm);
}
.footer-stat:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-3px);
}
.footer-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}
.footer-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-column-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.8rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-newsletter-btn,
.footer-social-link {
  align-items: center;
  transition: all var(--transition-fast);
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0;
}
.footer-link:hover {
  color: var(--gold-bright);
  padding-left: 0.6rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}
.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-item:hover {
  transform: translateX(6px);
}
.contact-item i {
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 1.4rem;
  margin-top: 0.2rem;
}
.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.footer-social-link {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}
.footer-social-link:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.footer-newsletter-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}
.footer-newsletter-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.footer-newsletter-input {
  flex: 1;
  background: 0 0;
  border: none;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: 0;
}
.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.footer-newsletter-btn {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 0 1.1rem;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: center;
}
.footer-newsletter-btn:hover {
  background: var(--gold-bright);
}
.footer-featured-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.stat-item:hover,
.team-member:hover .team-avatar {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.footer-featured-item:hover {
  padding-left: 0.5rem;
}
.featured-icon {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-title {
  font-size: 0.9rem;
}
.featured-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.footer-bottom {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.pricing-card,
.stat-item,
.team-member {
  text-align: center;
}
.footer-bottom-left p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer-bottom-link:hover,
.payment-methods i:hover,
.toast i {
  color: var(--gold-bright);
}
.footer-bottom-desc {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.78rem !important;
}
.footer-bottom-center {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.footer-bottom-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
  padding: 0 0.6rem;
}
.payment-methods i,
.scroll-to-top {
  transition: all var(--transition-fast);
  cursor: pointer;
}
.footer-bottom-separator {
  color: rgba(255, 255, 255, 0.2);
}
.payment-methods {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}
.payment-methods i:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .payment-methods {
    justify-content: center;
  }
}
.breadcrumb,
.scroll-to-top {
  display: flex;
  align-items: center;
}
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--fg);
  color: #fff;
  border: none;
  z-index: 30;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 50%;
}
.pricing-card,
.stat-item,
.team-avatar {
  transition: all var(--transition-smooth);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: var(--gold);
  color: #111;
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
@media (max-width: 640px) {
  .hero-section {
    min-height: 75vh;
  }
  .text-section-heading {
    font-size: 1.8rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .pricing-price {
    font-size: 2.5rem;
  }
}
.max-width-container {
  max-width: 1500px;
  margin: 0 auto;
}
.container-padding {
  padding: 0 2rem;
}
.bg-light {
  background-color: var(--bg);
}
.bg-dark {
  background: linear-gradient(170deg, #0d0d0d 0, #1a1a1a 100%);
}
.bg-muted {
  background-color: var(--muted-bg);
}
.page-hero {
  margin-top: 4.5rem;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(170deg, #fbf9f5 0, #ede8e0 40%, #f4f0e8 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: 8s ease-in-out infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.breadcrumb {
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--muted-fg);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb-sep {
  color: var(--gold);
  font-size: 0.6rem;
}
.section-padding {
  padding: 5rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.stat-item:hover {
  transform: translateY(-4px);
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted-fg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.12),
    0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--muted-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-dark);
  border: 2px solid transparent;
}
.card-luxury,
.pricing-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.team-member:hover .team-avatar {
  transform: scale(1.05);
}
.team-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--muted-fg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-price,
.process-number {
  color: var(--gold-dark);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.policy-section:last-child,
.pricing-feature:last-child,
.process-step:last-child,
.summary-item:last-child,
.terms-section:last-child {
  border-bottom: none;
}
.process-number {
  font-size: 2.5rem;
  line-height: 1;
  min-width: 60px;
}
.pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.05) 0,
    var(--bg) 100%
  );
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pricing-price {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-feature {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--muted-fg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-feature::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(0.6);
  transition: all var(--transition-slow);
  border-radius: var(--radius-md);
}
.card-luxury,
.contact-info-card,
.service-icon-circle {
  transition: all var(--transition-smooth);
}
.gallery-img:hover {
  filter: grayscale(0);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.card-luxury {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}
.card-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.card-luxury:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.25);
}
.service-icon-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12) 0,
    rgba(201, 168, 76, 0.03) 100%
  );
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--gold-dark);
}
.card-luxury:hover .service-icon-circle {
  background: var(--gold);
  color: #111;
  transform: rotate(-5deg) scale(1.1);
  box-shadow: var(--shadow-gold);
}
.policy-section,
.terms-section {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.policy-section h2,
.terms-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.policy-section p,
.terms-section p {
  margin-bottom: 1.2rem;
  color: var(--fg);
  line-height: 1.8;
}
.policy-section ol,
.policy-section ul,
.terms-section ol,
.terms-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
  line-height: 1.8;
}
.article-content li,
.policy-section li,
.terms-section li {
  margin-bottom: 0.5rem;
}
textarea.input-luxury {
  resize: vertical;
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.contact-info-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover,
.service-select-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.contact-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12) 0,
    rgba(201, 168, 76, 0.03) 100%
  );
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.map-placeholder,
.toast {
  display: flex;
  align-items: center;
}
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--muted-bg);
  border-radius: var(--radius-md);
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-fg);
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold-dark);
  opacity: 0.6;
}
.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.2);
  animation: 2s ease-in-out infinite pulseDot;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.2);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(201, 168, 76, 0.05);
  }
}
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--fg);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  z-index: 999;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-smooth);
  gap: 0.6rem;
  border: 1px solid var(--gold);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .listings-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
  .booking-layout {
    grid-template-columns: 1fr 420px;
    min-height: 100vh;
  }
}
@media (min-width: 1280px) {
  .booking-layout {
    grid-template-columns: 1fr 480px;
  }
}
.booking-form-section {
  padding: 3rem 2rem 6rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: var(--fg);
}
.form-label .optional {
  font-weight: 400;
  opacity: 0.5;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}
.input-luxury {
  width: 100%;
  background: 0 0;
  border: none;
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.18);
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--fg);
  transition: border-color var(--transition-fast),
    border-width var(--transition-fast);
  font-family: Inter, sans-serif;
}
.article-content h2,
.blog-card-title,
.faq-category-title,
.featured-title,
.policy-section h3,
.related-title,
.repair-table td:last-child,
.service-select-name,
.sidebar-title,
.summary-total-label,
.summary-total-price,
.summary-value.price {
  font-family: "Playfair Display", serif;
}
.input-luxury::placeholder {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--muted-fg);
  opacity: 0.55;
  font-size: 0.95rem;
}
.input-luxury:focus {
  border-bottom-color: var(--gold);
  border-bottom-width: 2px;
}
.input-luxury.error {
  border-bottom-color: #ef4444;
}
select.input-luxury {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6762' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
  margin: 3rem 0;
}
.service-selection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .service-selection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 900px) {
  .service-selection-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.service-select-card {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  background: var(--bg);
  position: relative;
  user-select: none;
}
.service-select-card.selected {
  border-color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.08) 0,
    rgba(201, 168, 76, 0.02) 100%
  );
  box-shadow: var(--shadow-gold);
}
.service-select-card.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.service-select-icon {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  transition: all var(--transition-fast);
}
.service-select-card.selected .service-select-icon {
  color: var(--gold);
  transform: scale(1.12);
}
.service-select-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--fg);
}
.service-select-price {
  font-size: 0.78rem;
  color: var(--muted-fg);
  letter-spacing: 0.06em;
}
.booking-summary-sidebar {
  background: linear-gradient(180deg, #f5f0e6 0, #ede8e0 40%, #f8f4ec 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .booking-form-section {
    padding: 4rem 4rem 8rem;
  }
  .booking-summary-sidebar {
    padding: 4rem 2.5rem;
    position: sticky;
    top: 4.5rem;
    height: calc(100vh - 4.5rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
}
.summary-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.summary-item {
  display: flex;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1rem;
}
.summary-label {
  font-size: 0.8rem;
  color: var(--muted-fg);
  letter-spacing: 0.05em;
}
.summary-value {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  color: var(--fg);
}
.summary-value.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--gold);
  gap: 1rem;
}
.summary-total-label {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg);
}
.summary-total-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.summary-guarantee,
.trust-badge {
  color: var(--muted-fg);
  display: flex;
}
.summary-guarantee {
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(201, 168, 76, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.summary-guarantee i {
  color: var(--gold);
  font-size: 1rem;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.trust-badge {
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}
.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--fg);
}
.blog-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover,
.related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: var(--muted-bg);
}
.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-category,
.featured-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  transition: color var(--transition-fast);
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted-fg);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 1rem;
}
.featured-post,
.related-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.blog-card-meta i {
  color: var(--gold);
  font-size: 0.65rem;
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}
.featured-post:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.25);
}
.featured-post-img {
  height: 300px;
  object-fit: cover;
  background-color: var(--muted-bg);
  width: 100%;
}
@media (min-width: 768px) {
  .card-luxury,
  .testimonial-card {
    padding: 3rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .faq-item {
    padding: 0.5rem 0;
  }
  .newsletter-form {
    flex-direction: row;
    gap: 1rem;
  }
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  .footer-middle {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding: 7rem 4rem;
  }
  .footer-bottom {
    padding: 3rem 4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .container-padding {
    padding: 0 4rem;
  }
  .page-hero {
    padding: 6rem 4rem 5rem;
  }
  .section-padding {
    padding: 7rem 4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  .pricing-card.featured {
    transform: scale(1.05);
  }
  .booking-form-section {
    padding: 4rem 4rem 8rem;
  }
  .form-divider {
    margin: 4rem 0;
  }
  .featured-post {
    grid-template-columns: 1fr 1fr;
  }
  .featured-post-img {
    height: 100%;
  }
}
.featured-post-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.featured-excerpt {
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.sidebar-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin-bottom: 2rem;
  transition: all var(--transition-fast);
}
.sidebar-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
}
.sidebar-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.category-link,
.recent-post-item {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.category-link {
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  color: var(--fg);
  font-size: 0.9rem;
}
.category-count,
.tag {
  background: var(--muted-bg);
  font-size: 0.7rem;
}
.category-link:hover {
  color: var(--gold-dark);
  padding-left: 0.4rem;
}
.category-count {
  color: var(--muted-fg);
  padding: 2px 8px;
  border-radius: 10px;
}
.recent-post-item {
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: var(--fg);
}
.recent-post-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--muted-bg);
  flex-shrink: 0;
}
.author-card,
.tag {
  align-items: center;
}
.recent-post-info h5 {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.recent-post-info span {
  font-size: 0.65rem;
  color: var(--muted-fg);
}
.article-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.article-content p {
  margin-bottom: 1.5rem;
  color: var(--fg);
  line-height: 1.8;
}
.article-content ol,
.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.8;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(201, 168, 76, 0.04);
  font-style: italic;
  color: var(--muted-fg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content .highlight-box {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.08) 0,
    transparent 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}
.share-btn:hover,
.tag:hover {
  background: var(--gold);
  color: #111;
}
.tag {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.related-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.related-img {
  height: 180px;
  background: var(--muted-bg);
  object-fit: cover;
  width: 100%;
}
.related-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.author-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin: 3rem 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--muted-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.faq-search input,
.share-btn {
  color: var(--fg);
  transition: all var(--transition-fast);
}
.share-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.share-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.newsletter-section {
  background: linear-gradient(170deg, #0d0d0d 0, #1a1a1a 100%);
  border-top: 2px solid rgba(201, 168, 76, 0.3);
}
.faq-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.faq-search input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background: var(--bg);
  font-size: 0.95rem;
  outline: 0;
}
.faq-search input:focus {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.faq-search i {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
  pointer-events: none;
}
.faq-category {
  margin-bottom: 3rem;
}
.faq-category-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-category-title i {
  color: var(--gold);
  font-size: 1.2rem;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  gap: 1.5rem;
  transition: color var(--transition-fast);
  user-select: none;
}
.faq-question-text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}
.faq-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--fg);
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease-out, margin-top 0.4s ease-out;
  margin-top: 0;
  color: var(--muted-fg);
  line-height: 1.8;
  padding-right: 1rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.repair-table {
  width: 100%;
  border-collapse: collapse;
}
.repair-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast);
}
.repair-table tr:hover {
  background: rgba(201, 168, 76, 0.03);
}
.repair-table td {
  padding: 1.2rem 0;
  font-size: 0.95rem;
  color: var(--fg);
}
.repair-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--gold-dark);
}