/* =============== Modernized Base ================== */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; transition: 0.2s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* =============== Refactored Sticky Header =============== */
.header-nav {
  background: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.header-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
}

.nav-links a:hover { color: #c6d23b; }

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =============== Hero =============== */
.hero-clean {
  padding: 7rem 1rem;
  text-align: center;
  background: linear-gradient(to bottom, #fbfbfb, #ffffff);
}

.hero-clean h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 850;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-clean h1 span.highlight { color: #c6d23b; }

.header-nav h2 span.highlight { color: #c6d23b; }

.hero-clean p {
  font-size: 1.25rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

/* =============== Refined Service Cards (Grid) =============== */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 { font-size: 2.5rem; letter-spacing: -0.02em; }


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid #e6e6e6;
  padding: 2.5rem;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-color: #c6d23b;
}

.service-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #c6d23b;
  font-size: 2rem;
}

.service-card h3 { margin: 0 0 0.75rem 0; font-size: 1.35rem; }
.service-card p { color: #666; font-size: 1rem; margin-bottom: 1.5rem; }
.service-card .price-tag { font-weight: 700; color: #1a1a1a; font-size: 1.1rem; }

/* =============== Buttons =============== */
.button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.button-primary { background: #c6d23b; color: #000; }
.button-primary:hover { background: #b5c634; transform: scale(1.02); }

.button-outline { 
  border: 1px solid #e0e0e0; 
  color: #1a1a1a; 
  background: #fff;
}
.button-outline:hover { border-color: #c6d23b; background: #fbfbfb; }

/* =============== Why Choose Us (Checklist) =============== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.feature-item::before {
  content: "✓";
  color: #c6d23b;
  background: #f4f6d8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* =============== Contact & Footer =============== */
.contact-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 4rem;
  margin: 5rem auto;
}


.contact-card input,
.contact-card textarea {

  font-family: inherit;
  font-size: 1.1rem;
}


.footer {
  padding: 3rem 1rem;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-cta-group { display: none; } /* Add mobile menu trigger here */
  .hero-clean h1 { font-size: 2.8rem; }
  .features-grid { grid-template-columns: 1fr; }
}


/* =============== Testimonials Ticker Fix =============== */
.testimonials { 
  padding: 5rem 1rem; 
  background: #fff; 
}

.ticker { 
  overflow: hidden; 
  margin-top: 2rem; 
  white-space: nowrap; 
}

.ticker .track {
  display: inline-flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.ticker:hover .track { 
  animation-play-state: paused;
}

.review {
  background: #fbfbfb;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  width: 350px; /* Fixed width helps the smooth scroll */
  white-space: normal; /* Allows text to wrap inside the card */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
}

.review figcaption {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.u-center { text-align: center; }