:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #e8f0fe;
  --dark: #1a1a2e;
  --dark-grey: #2d2d44;
  --medium-grey: #5f6368;
  --light-grey: #f1f3f4;
  --white: #ffffff;
  --success: #0d904f;
  --warning: #f9ab00;
  --danger: #d93025;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: var(--dark); font-weight: 700; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* HEADER */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.logo-text span { color: var(--primary); }

.nav-links { display: none; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: none;
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--primary-dark); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 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 {
  display: none;
  background: var(--dark-grey);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn-primary { margin-top: 15px; text-align: center; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-grey) 100%);
  color: var(--white);
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.03;
  border-radius: 50%;
}
.hero h1 { font-size: 2.2rem; margin-bottom: 16px; position: relative; z-index: 1; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  flex: 1;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.search-box input:focus { border-color: var(--primary); }
.search-box input::placeholder { color: var(--medium-grey); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--primary) !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-secondary:hover { background: var(--primary-light); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--dark) !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-white:hover { background: var(--light-grey); }

/* SECTIONS */
.section { padding: 60px 0; }
.section-alt { background: var(--light-grey); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 1.8rem; margin-bottom: 12px; }
.section-header p { color: var(--medium-grey); max-width: 600px; margin: 0 auto; }

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--medium-grey); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .price { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; }
.service-card a { font-weight: 600; font-size: 0.9rem; }

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.step {
  text-align: center;
  padding: 20px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--medium-grey); font-size: 0.95rem; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: var(--dark-grey); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.review-location { color: var(--medium-grey); font-size: 0.85rem; }

/* TRUST BADGES */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
.trust-badge .icon { font-size: 2rem; margin-bottom: 10px; }
.trust-badge h4 { font-size: 0.95rem; margin-bottom: 4px; }
.trust-badge p { color: var(--medium-grey); font-size: 0.85rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--light-grey); }
.faq-toggle { font-size: 1.3rem; color: var(--primary); transition: transform var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--medium-grey);
  line-height: 1.7;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* PROFILE */
.profile-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-grey) 100%);
  color: var(--white);
  padding: 40px 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.profile-info h1 { font-size: 1.6rem; margin-bottom: 8px; }
.profile-info .rating { color: var(--warning); margin-bottom: 8px; }
.profile-info .location { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.profile-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.profile-detail-card h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--light-grey); }
.service-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 4px;
}
.hours-table { width: 100%; }
.hours-table tr td { padding: 8px 0; border-bottom: 1px solid var(--light-grey); font-size: 0.95rem; }
.hours-table tr td:last-child { text-align: right; font-weight: 500; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.blog-card-content { padding: 20px; }
.blog-card-meta { color: var(--medium-grey); font-size: 0.85rem; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { color: var(--medium-grey); font-size: 0.9rem; }
.blog-card a { font-weight: 600; font-size: 0.9rem; margin-top: 12px; display: inline-block; }

/* BREADCRUMBS */
.breadcrumbs {
  background: var(--light-grey);
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--medium-grey); margin: 0 6px; }
.breadcrumbs .current { color: var(--dark); font-weight: 500; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* LOCATION GRID */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.location-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all var(--transition);
  color: var(--dark) !important;
  font-weight: 500;
}
.location-link:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary) !important;
}
.location-link .arrow { color: var(--primary); }

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; margin-bottom: 8px; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}
.cookie-banner.active { display: block; }
.cookie-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.cookie-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cookie-buttons button { padding: 10px 24px; border-radius: var(--radius); font-weight: 600; border: none; cursor: pointer; font-size: 0.9rem; }

/* CONTENT PAGES */
.page-content { padding: 40px 0; }
.page-content h2 { font-size: 1.5rem; margin: 30px 0 16px; }
.page-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.page-content p { margin-bottom: 16px; color: #444; line-height: 1.8; }
.page-content ul { margin: 16px 0; padding-left: 20px; }
.page-content ul li { margin-bottom: 8px; padding-left: 10px; position: relative; color: #444; line-height: 1.7; }
.page-content ul li::before { content: '✓'; color: var(--primary); font-weight: 700; position: absolute; left: -10px; }

/* SCHEMA */
.schema-data { display: none; }

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  border: none;
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* RESPONSIVE */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .search-box { flex-direction: row; }
  .hero h1 { font-size: 2.8rem; }
  .profile-grid { grid-template-columns: 2fr 1fr; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 3.2rem; }
  .section { padding: 80px 0; }
  .section-header h2 { font-size: 2.2rem; }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: repeat(4, 1fr); }
}
