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

:root {
  --green: #1a3c34;
  --green-mid: #2d6a4f;
  --shopify-green: #96BF48;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #666;
  --border: #e5e5e5;
  --bg-page: #f2f2ee;
  --gold: #f5a623;
  --radius: 8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  white-space: nowrap;
}
.nav-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text-light);
}
.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 13px;
  color: var(--text-dark);
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.navbar-sub {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 8px;
  display: flex;
  gap: 20px;
}
.navbar-sub a { font-size: 13px; color: var(--text-mid); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--text-dark); }

/* ===== PROFILE HEADER — full width above sidebar ===== */
.profile-header-wrap {
  max-width: 1160px;
  margin: 16px auto 0;
  padding: 0 24px 28px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0f8e8;
  color: #3a7c4a;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid #c4e0a0;
}
.profile-header-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.profile-logo {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
}
.profile-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile-logo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1a2744;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 24px;
  font-weight: 700;
}
.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: var(--shopify-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.profile-info h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}
.profile-subtitle {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 12px;
}
.profile-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.stars-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.review-count { font-size: 13px; color: var(--text-light); }
.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-mid);
}
.profile-actions { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  background: var(--green);
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: #0f2820; }
.btn-secondary {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 2px 0;
}
.btn-secondary:hover { text-decoration: underline; }

/* ===== MAIN LAYOUT — content left, sidebar right ===== */
.main-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.sidebar-price { font-size: 22px; font-weight: 700; }
.sidebar-price-note { font-size: 12px; color: var(--text-light); }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.sidebar-info-text { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
.sidebar-social { display: flex; gap: 8px; margin-top: 4px; }
.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: border-color 0.2s;
}
.social-icon:hover { border-color: #999; text-decoration: none; }

/* ===== TAB NAVIGATION ===== */
.tab-nav {
  display: flex;
  gap: 2px;
  background: white;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 8px 12px 0;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 6px 6px 0 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}
.tab-btn:hover { color: var(--text-dark); }
.tab-btn.active {
  color: var(--text-dark);
  border-bottom: 2px solid var(--green);
  background: #f5f9f5;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
  background: white;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 32px;
}
.tab-content.active { display: block; }
.tab-content h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }

/* ===== ABOUT TAB ===== */
.about-intro { color: var(--text-mid); margin-bottom: 20px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.service-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.check-icon { color: var(--green); font-weight: 700; font-size: 15px; }

.plus-partner-banner {
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.banner-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.banner-desc { font-size: 13px; opacity: 0.85; line-height: 1.5; }

.section-heading { font-size: 22px; font-weight: 700; margin-bottom: 16px; }

/* ===== ACCORDION ===== */
.accordion-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  background: white;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--text-dark);
  transition: background 0.15s;
}
.accordion-btn:hover { background: #fafafa; }
.accordion-price { font-size: 13px; color: var(--text-light); white-space: nowrap; }
.accordion-arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
.accordion-btn.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 20px 24px 24px;
  background: #fafafa;
  border-top: 1px solid var(--border);
}
.accordion-body.open { display: block; }
.acc-intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.acc-list {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.acc-check {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.acc-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== OTHER SERVICES / TAGS ===== */
.other-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.other-col h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.tag-group { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: #f0f0f0;
  color: var(--text-mid);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===== FEATURED WORK ===== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s;
}
.work-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.work-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.work-img img { width: 100%; height: 100%; object-fit: cover; }
.work-img-placeholder { text-align: center; line-height: 1.4; }
.work-card-body { padding: 20px; }
.work-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.work-type { font-size: 13px; color: var(--text-light); font-weight: 500; margin-bottom: 8px; }
.work-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 12px; line-height: 1.5; }
.work-link { font-size: 13px; font-weight: 500; }
.work-link:hover { color: var(--green); }

/* ===== REVIEWS ===== */
.reviews-summary {
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.summary-number { font-size: 36px; font-weight: 700; margin-bottom: 4px; }
.summary-label { font-size: 11px; letter-spacing: 0.08em; opacity: 0.8; text-transform: uppercase; margin-top: 4px; }
.stars.gold { color: var(--gold); }

.rating-breakdown {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: white;
}
.big-rating { font-size: 48px; font-weight: 700; line-height: 1; }
.big-stars { font-size: 22px; letter-spacing: 2px; margin: 6px 0 4px; }
.breakdown-note { font-size: 12px; color: var(--text-light); }
.breakdown-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.bar-row > span:first-child { width: 24px; text-align: right; }
.bar-row > span:last-child { width: 36px; text-align: right; }
.bar { flex: 1; height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--green); border-radius: 4px; }
.bar-fill.short { background: #6aab8a; }
.breakdown-footer { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }

.reviews-meta { font-size: 13px; color: var(--text-light); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); overflow: hidden; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.review-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; background: white; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; }
.reviewer-name { font-size: 14px; font-weight: 600; }
.review-stars { color: var(--gold); font-size: 13px; }
.review-date { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.55; margin-bottom: 12px; }
.review-service { display: inline-block; background: #f0f0f0; color: var(--text-mid); font-size: 11px; padding: 3px 10px; border-radius: 12px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
}
.pagination button {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  font-size: 13px;
  color: var(--text-mid);
  transition: background 0.15s;
}
.pagination button:hover { background: #f0f0f0; }
.page-num {
  width: 32px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  font-size: 13px;
  cursor: pointer;
}
.page-num.active { background: var(--green); color: white; border-color: var(--green); }
.jump-label { margin-left: 8px; color: var(--text-light); }
#jump-input { width: 48px; padding: 4px 6px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; text-align: center; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 72px 24px;
}
.footer-cta h2 { font-size: 34px; font-weight: 700; margin-bottom: 10px; }
.footer-cta p { font-size: 15px; opacity: 0.85; margin-bottom: 24px; }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: white; color: var(--green); }

/* ===== PAGE FOOTER ===== */
.page-footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-light); }
.footer-links a:hover { color: var(--text-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .work-grid, .reviews-grid, .services-grid, .other-section { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr 1fr; }
  .profile-info h1 { font-size: 26px; }
}
@media (max-width: 600px) {
  .profile-header-inner { flex-direction: column; }
  .profile-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .reviews-summary { grid-template-columns: 1fr 1fr; }
  .navbar-inner { flex-wrap: wrap; }
  .nav-search { order: 3; width: 100%; }
}
