/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3436;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --primary: #2d3436;
  --primary-light: #3d4548;
  --gold: #d4a017;
  --gold-dark: #b8890f;
  --gold-light: #f0d060;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 48px;
}
.text-center { text-align: center; }

/* ===== URGENCY BANNER ===== */

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-img {
  height: 56px;
  width: auto;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.header-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-gift { color: var(--gold) !important; font-weight: 600 !important; background: rgba(212,160,23,0.08); padding: 5px 12px; border-radius: 50px; border: 1px solid rgba(212,160,23,0.2); }
.nav-gift:hover { background: rgba(212,160,23,0.15) !important; }
.nav-gift::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #f9fafb 0%, #ffffff 40%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(45,52,54,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-image {
  flex-shrink: 0;
  width: 480px;
  height: 420px;
  border-radius: 16px;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-image-placeholder {
  text-align: center;
  color: var(--gray-400);
}
.hero-image-placeholder .placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.hero-image-placeholder .placeholder-icon svg { width: 28px; height: 28px; color: var(--gray-400); }
.hero-image-placeholder p { font-size: 0.85rem; line-height: 1.6; }
.hero-float-review {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-float-review .float-stars {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.hero-float-review .float-count {
  font-size: 0.75rem;
  color: var(--gray-600);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 18px; height: 18px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ===== PRICING BANNER ===== */
.pricing {
  background: var(--primary);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,160,23,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-headline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-headline .gold { color: var(--gold); }
.pricing-divider {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0;
  opacity: 0.6;
}
.pricing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== BEFORE & AFTER ===== */
.before-after {
  padding: 96px 0;
  background: var(--gray-50);
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ba-images {
  display: flex;
  height: 220px;
  position: relative;
}
.ba-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ba-half.before {
  background: var(--gray-200);
}
.ba-half.after {
  background: #e6f0e6;
}
.ba-half .ba-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ba-half.before .ba-label { color: var(--gray-600); }
.ba-half.after .ba-label { color: #228b22; }
.ba-half .ba-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}
.ba-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.ba-info {
  padding: 20px 22px;
}
.ba-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.ba-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}
/* Before/After Slider */
.ba-card--slider { overflow: hidden; }
.ba-slider {
  position: relative;
  overflow: hidden;
  height: 320px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider-after { position: relative; }
.ba-slider-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.ba-slider-before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}
.ba-slider-handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.ba-slider-handle-knob {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-slider-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 4;
  pointer-events: none;
}
.ba-slider-label--before {
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
}
.ba-slider-label--after {
  right: 12px;
  background: rgba(34,139,34,0.8);
  color: var(--white);
}

@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ba-slider { height: 280px; }
}

/* ===== WHY CHOOSE US ===== */
.why {
  padding: 96px 0;
  background: var(--gray-50);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--gold); }
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 96px 0;
  background: var(--white);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.how-step { text-align: center; padding: 24px; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.how-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVICE AREA ===== */
.area {
  padding: 96px 0;
  background: var(--gray-50);
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: all var(--transition);
}
.area-pill:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.06);
}
.area-pill svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}
/* Google Reviews Aggregate Badge */
.google-aggregate {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.google-aggregate .g-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-aggregate .g-info { flex: 1; }
.google-aggregate .g-rating {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.google-aggregate .g-rating .g-stars { color: var(--gold); }
.google-aggregate .g-count {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.google-aggregate .g-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  transition: all var(--transition);
  white-space: nowrap;
}
.google-aggregate .g-link:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.06);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== CONTACT / CTA FOOTER ===== */
.contact {
  padding: 96px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info .tagline {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,160,23,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail-text span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.contact-detail-text a {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--primary); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { width: 56px; height: 56px; color: #22c55e; margin: 0 auto 16px; }
.form-success h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== BOTTOM FOOTER ===== */
.footer {
  background: #1a1e1f;
  padding: 28px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.45);
}
.footer .footer-tagline { color: var(--gold); font-weight: 500; font-style: italic; }
.footer-legal { margin-top: 0.5rem; font-size: 0.8rem; }
.footer-legal a { color: var(--gold); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-disclaimer { margin-top: 0.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.45); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ===== BLOG PREVIEW ===== */
.blog-preview { padding: 80px 0; background: var(--gray-50); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-preview-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.blog-preview-card .meta {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-preview-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-preview-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-preview-card h3 a:hover { color: var(--gold); }
.blog-preview-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-preview-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.blog-preview-card .read-more:hover { text-decoration: underline; }
.blog-preview .view-all {
  text-align: center;
  margin-top: 32px;
}
.blog-preview .view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: all var(--transition);
}
.blog-preview .view-all a:hover {
  background: var(--gold);
  color: #fff;
}
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
}
.google-review-link:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.google-review-link img { height: 20px; width: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .nav-links, .header-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 960px) {
  .hero .container { flex-direction: column; gap: 40px; }
  .hero-image { width: 100%; max-width: 480px; height: 320px; }
}
@media (max-width: 768px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .logo-img { height: 44px; }
  .mobile-nav { top: 64px; padding: 16px; }
  .mobile-nav a { padding: 14px 0; font-size: 1.05rem; }
  .mobile-nav .mobile-phone { padding: 16px; font-size: 1.05rem; border-radius: 12px; }
  .hero { padding: 90px 0 50px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .hero-image { height: 260px; }
  .hero-badge { font-size: 0.75rem; margin-bottom: 20px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 20px 16px; }
  .service-card h3 { font-size: 0.95rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 24px 16px; }
  .pricing-inner { padding: 0 8px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; width: 100%; padding: 16px 24px; font-size: 1rem; }
  .pricing-headline { font-size: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .urgency-banner { font-size: 0.75rem; padding: 8px 12px; flex-wrap: wrap; justify-content: center; gap: 4px; }
  .urgency-divider { display: none; }
}

/* ===== PORTFOLIO GALLERY ===== */
.portfolio { padding: 80px 0; background: var(--gray-50); }
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.portfolio-filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(45,52,54,0.85));
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-overlay p {
  font-size: 0.8rem;
  color: var(--gold-light);
}
.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}
.portfolio-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.portfolio-lightbox.active { display: flex; }
.portfolio-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.portfolio-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
}
.portfolio-lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 8px 24px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE CALL / DESKTOP CTA ===== */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  flex-direction: row;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .mobile-call-btn { display: flex; }
  body { padding-bottom: 56px; }
}
/* Desktop sticky CTA - shows after scrolling past hero */
.desktop-sticky-cta {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  background: var(--gold);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  transition: all 0.3s;
  align-items: center;
  gap: 8px;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,160,23,0.4); }
  50% { box-shadow: 0 4px 30px rgba(212,160,23,0.6); }
}
.desktop-sticky-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.desktop-sticky-cta svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .desktop-sticky-cta.visible { display: flex; }
}

/* ===== BACK TO TOP ===== */
#backToTop {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
#backToTop:hover {
  background: var(--gold);
}
#backToTop svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}
@media (max-width: 767px) {
  #backToTop { bottom: 4.5rem; }
}