@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@600;700&display=swap');

:root {
  --primary-color: #1e293b;
  --secondary-color: #f1f5f9;
  --accent-color: #3b82f6;
  --dark-text: #0f172a;
  --light-text: #ffffff;
  --surface-color: #ffffff;
  --max-width: 1200px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

img {
  max-width: 100%;
  display: block;
  border-radius: 4px;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

a {
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-color);
}

section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}

/* Header */
.site-header {
  background: var(--primary-color);
  color: var(--light-text);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header::before {
  content: 'Licensed • Bonded • Insured';
  display: block;
  text-align: center;
  background: var(--accent-color);
  color: var(--light-text);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

  .main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
  }
  .main-nav a.active {
    color: var(--accent-color);
  }

.main-nav a:hover {
  color: var(--accent-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .phone {
  color: var(--light-text);
  font-weight: 600;
  text-decoration: none;
}

/* Hero */
.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light-text);
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  color: var(--light-text);
}

.hero p {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.service-card {
  background: var(--surface-color);
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.process ol {
  max-width: 800px;
  margin: 0 auto;
  list-style-position: inside;
}

.process li {
  margin-bottom: 1rem;
  font-weight: 500;
}

.why ul {
  max-width: 900px;
  margin: 0 auto;
  list-style: disc inside;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Process section */
.process-steps {
  margin-top: 1.5rem;
}

.step-card {
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step-card img {
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Team section */
.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--surface-color);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.team-member .role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Guarantee section */
.guarantee {
  background: #ffffff;
  color: var(--dark-text);
  text-align: center;
}

/* Service area bubbles */
.service-area-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.service-area {
  text-align: center;
}

.service-area-bubbles span {
  background: var(--accent-color);
  color: var(--light-text);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.testimonials .testimonial {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.review-link img {
  height: 40px;
}

.cta {
  text-align: center;
  background: var(--primary-color);
  color: var(--light-text);
}

.cta h2 {
  color: var(--light-text);
}

.cta p {margin-bottom:1.5rem;}

/* Footer */
footer {
  background: var(--primary-color);
  color: #ccc;
  padding: 2rem 0;
}

footer a { color: #ccc; text-decoration:none; }

footer a:hover { color: var(--light-text); }

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .footer-bottom { text-align: center; font-size: 0.875rem; }

/* Responsive Nav */
@media (max-width:768px) {
  .main-nav ul {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 2rem;
    display: none;
  }
  .main-nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}

/* Utilities */
.fade { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-in-out; }
.fade.show { opacity:1; transform: translateY(0); }

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-item {
  min-width:100%;
}
.carousel button {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--light-text);
  border:none;
  padding:0.5rem 1rem;
  cursor:pointer;
}
.carousel button.prev { left:10px; }
.carousel button.next { right:10px; }

.google-reviews-logo {
  display:block;
  max-width:350px;
  margin:0 auto 1rem;
}

.review-card {
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  padding:1rem;
  max-width:600px;
  margin:0 auto;
  text-align:left;
}

.review-card .rating {
  color:#fbbc04;
  font-size:1.2rem;
  margin-bottom:0.5rem;
}

.review-carousel {
  margin-top:1rem;
}

form.contact-form {
  max-width:600px; margin:0 auto;
}
form.contact-form label { display:block; margin-top:1rem; }
form.contact-form input, form.contact-form textarea {
  width:100%; padding:0.75rem; margin-top:0.5rem; border:1px solid #ccc; border-radius:4px;
}
form.contact-form button { margin-top:1rem; }


/* Gallery Enhancements */
.gallery-section h3 {
  margin-top: 3rem;
  color: var(--accent-color);
  color: var(--secondary-color);
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
}

.before-after img {
  display: block;
  width: 100%;
}

.before-after .after-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.before-after .after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after input[type=range] {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.designer-style {
  margin-bottom: 3rem;
}

/* FAQ Dropdown */
.faq-list details {
  background: var(--surface-color);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.faq-list summary {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  float: right;
}

.faq-list details[open] summary::after {
  content: '\2212';
}

.faq-list p {
  margin-top: 0.5rem;
}

