/* =================================
   TEN TALENT MAIN STYLES
   Derby, KS Lawn & Landscape
================================= */

/* CSS Variables */
:root {
  --green: #007336;
  --green-dark: #0a5d31;
  --green-light: #e8f5e9;
  --orange: #f97316;
  --ink: #0f172a;
  --ink-light: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-md: 0 20px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}

.wrap {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 3rem;
  color: var(--ink);
  position: relative;
  padding: 0 1rem 1.2rem 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Playfair Display', Georgia, serif;
  text-transform: capitalize;
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--green), #00a84a, var(--green), transparent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Spacing */
.sec {
  padding: 5rem 0;
}

.sec--tint {
  background: var(--bg-light);
}

.sec--bg {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* =================================
   HEADER
================================= */

.sitehdr {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.sitehdr.is-solid {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sitehdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand img {
  height: 45px;
  width: auto;
}

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

.nav__link {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.nav__link:hover {
  color: var(--green);
}

.hdrcta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.phone {
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.phone:hover {
  text-decoration: underline;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn--quote {
  background: var(--orange);
  color: var(--white);
}

.btn--quote:hover {
  background: #e85d0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn--ghost:hover {
  background: var(--green);
  color: var(--white);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Mobile Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}

.mobile__inner {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.mitem {
  padding: 1rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.mitem:last-child {
  border-bottom: none;
}

.mobile__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* =================================
   HERO SECTION - CENTERED WITH SPLIT HEADLINE
================================= */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--green);
  overflow: hidden;
}

.hero--home {
  min-height: 750px;
}

.hero--service {
  min-height: 500px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,115,54,0.85) 0%,
    rgba(0,115,54,0.65) 40%,
    rgba(0,115,54,0.35) 70%,
    rgba(0,115,54,0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 120px 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Force proper line breaks */
.hero__h-line1 {
  display: block;
  white-space: nowrap;
  margin-bottom: 0.25em;
}

.hero__h-line2 {
  display: block;
}

.hero__sub {
  font-size: 1.6rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  margin-top: 2.5rem;
}

.hero__actions .btn {
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* =================================
   ABOUT SECTION
================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-citation {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 6px solid var(--green);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--ink-light);
}

.about-intro {
  font-size: 1.3rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-right p {
  color: var(--ink-light);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-quote {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  box-shadow: 0 4px 12px rgba(0, 115, 54, 0.1);
  margin: 2.5rem 0;
}

.about-quote p {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
}

.quote-mark {
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1;
  vertical-align: middle;
}

.about-tagline {
  color: var(--green) !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  margin-top: 1.5rem !important;
}

/* =================================
   SERVICES SECTION
================================= */

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

.service-icon{
width:70px;
height:70px;
border-radius:50%;
background:var(--green);
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 1.2rem auto;
}

.service-card:hover .service-icon{
transform:scale(1.1);
transition:0.3s;
}

.service-icon svg{
color:var(--orange);
width:30px;
height:30px;
stroke-width:2.2;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 3rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background images for service cards */
.service-card.lawn-treatments {
  background-image: url('./assets/granular.png');
  background-size: cover;
  background-position: center;
}

.service-card.irrigation {
  background-image: url('./assets/irr.jpg');
  background-size: cover;
  background-position: center;
}

.service-card.mowing {
  background-image: url('./assets/mow.jpg');
  background-size: cover;
  background-position: center;
}

.service-card.construction {
  background-image: url('./assets/construct.jpg');
  background-size: cover;
  background-position: center;
}

.service-card.aeration {
  background-image: url('./assets/aerate.jpg');
  background-size: cover;
  background-position: center;
}

.service-card.landscaping {
  background-image: url('./assets/landscape.jpg');
  background-size: cover;
  background-position: center;
}

/* Dark overlay for readability */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.service-card * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  margin: 0.5rem 0;
  font-size: 1.8rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.learn-more {
  margin-top: 1rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 1.1rem;
}

/* =================================
   BENEFITS / FEATURE CARDS
================================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefits-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.benefit-card h4 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--ink-light);
  margin: 0;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Category Titles */
.category-title-wrapper {
  margin: 3rem 0 1.5rem;
}

.category-title {
  font-size: 1.6rem;
  color: var(--ink);
  border-bottom: 3px solid var(--orange);
  padding-bottom: 0.5rem;
  display: inline-block;
  font-weight: 600;
}

/* =================================
   STATS GRID
================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 4rem 0 0;
  text-align: center;
}

.stat-item {
  background: var(--white);
  padding: 3rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--ink-light);
  font-weight: 500;
  font-size: 1.2rem;
}

/* =================================
   REVIEWS
================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.stars {
  color: #fbbf24;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}

.review-card p {
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.reviewer {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
}

.social-proof-link {
  text-align: center;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 1.1rem;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.facebook-icon {
  width: 22px;
  height: 22px;
}

/* =================================
   CAROUSEL / GALLERY
================================= */

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 2.5rem;
  box-sizing: border-box;
}

.carousel-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.carousel-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--orange);
}

.carousel-caption h3 {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.carousel-caption p {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.location, .video-duration {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  background: var(--green-light);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--green);
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--green);
  color: var(--white);
}

.carousel-arrow--prev {
  left: 30px;
}

.carousel-arrow--next {
  right: 30px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 2.5rem 0 0;
}

.dot, .video-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active, .video-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.section-link {
  text-align: center;
  margin-top: 3rem;
}

/* =================================
   PRICING
================================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 3rem 0 1.5rem;
}

.pricecard {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: var(--transition);
}

.pricecard:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.15);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricecard h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 1.8rem 0;
  text-align: center;
  line-height: 1;
}

.price span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricecard ul {
  list-style: none;
  margin: 2.5rem 0;
}

.pricecard li {
  padding: 0.7rem 0;
  color: var(--ink-light);
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.pricecard li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.3rem;
}

.pricing-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* =================================
   FAQ
================================= */

.faq {
  max-width: 900px;
  margin: 2rem auto 0;
}

.faqitem {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faqitem summary {
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1.2rem;
}

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

.faqitem summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 400;
}

.faqitem[open] summary::after {
  content: '−';
}

.faqbody {
  padding: 0 2rem 2rem 2rem;
  color: var(--ink-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================================
   FORM
================================= */

.form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.form label {
  display: block;
  margin-bottom: 1.8rem;
  font-weight: 500;
  color: var(--ink);
}

.form span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 115, 54, 0.1);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.toast {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

/* =================================
   FOOTER
================================= */

.ftr {
  background: var(--ink);
  color: #94a3b8;
  padding: 3rem 0;
}

.ftr__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-phone:hover {
  color: var(--orange);
}

.muted {
  color: #94a3b8;
  font-size: 1rem;
}

/* =================================
   FLOATING ACTION BUTTONS
================================= */
/* Hidden on desktop by default */
.floating-actions {
  display: none;
}

/* =================================
   UTILITIES
================================= */

.skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: white;
  padding: 8px;
  z-index: 1001;
  text-decoration: none;
}

.skip:focus {
  top: 0;
}

/* =================================
   DESKTOP OPTIMIZED MEDIA QUERIES
================================= */

/* Large Desktop */
@media (min-width: 1600px) {
  .hero--home {
    min-height: 850px;
  }
  
  .hero__h {
    font-size: 6rem;
  }
  
  .hero__sub {
    font-size: 1.8rem;
  }
  
  .wrap {
    width: min(1400px, calc(100% - 100px));
  }
}

/* Tablet and below */
@media (max-width: 1100px) {
  .about-grid,
  .carousel-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .carousel-image {
    height: 350px;
  }
  
  .hero__h {
    font-size: 4rem;
  }
  
  .hero__sub {
    font-size: 1.4rem;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .benefits-grid,
  .benefits-grid--six,
  .addon-grid,
  .stats-grid,
  .pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero,
  .hero--home {
    min-height: 600px;
  }
  
  .hero__content {
    padding: 80px 0;
    max-width: 100%;
  }
  
  .hero__h {
    font-size: 3.2rem;
  }
  
  .hero__sub {
    font-size: 1.3rem;
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2.4rem;
    white-space: normal;
    width: 100%;
  }
  
  .form {
    padding: 2.5rem;
  }
  
  .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .carousel-slide {
    padding: 1.5rem;
  }
  
  .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .carousel-arrow--prev {
    left: 15px;
  }
  
  .carousel-arrow--next {
    right: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  
  .ftr__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero,
  .hero--home {
    min-height: 500px;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .pricecard {
    padding: 2rem 1.5rem;
  }
  
  .carousel-image {
    height: 250px;
  }
  
  .carousel-caption h3 {
    font-size: 1.5rem;
  }
  
  /* Hide existing chat bubble */
  .chat {
    display: none;
  }

  /* =================================
     HEADER FIXES - Stop squishing
  ================================= */
  .sitehdr__inner {
    height: 70px;
    padding: 0;
  }

  .brand img {
    height: 35px;
  }

  .hdrcta {
    gap: 0.5rem;
  }

  .hdrcta .phone {
    display: none;
  }

  .hdrcta .btn--quote {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .mobile__cta .btn--quote {
    display: block;
  }

  /* =================================
     HERO FIXES - Ensure text is visible
  ================================= */
  .hero--home {
    min-height: 500px;
  }

  .hero__content {
    padding: 60px 0;
  }

  .hero__h {
    font-size: 2.2rem;
    line-height: 1.2;
    padding: 0 10px;
  }

  .hero__h-line1,
  .hero__h-line2 {
    white-space: normal;
    display: block;
  }

  .hero__sub {
    font-size: 1.2rem;
    padding: 0 20px;
    margin-bottom: 1.5rem;
  }

  .hero__actions .btn {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }

  /* =================================
     SERVICES CAROUSEL (MOBILE ONLY)
  ================================= */
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 260px;
    min-height: 280px;
    padding: 2rem 1.5rem;
    margin-right: 1rem;
  }

  .service-card:last-child {
    margin-right: 20px;
  }

  .services-grid::after {
    content: '';
    flex: 0 0 10px;
  }

  .services-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
  }

  .service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: var(--transition);
    cursor: pointer;
  }

  .service-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--green);
  }

  /* =================================
     BENEFITS CAROUSEL (MOBILE ONLY)
  ================================= */
  .benefits-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .benefit-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 260px;
    padding: 2rem;
    margin-right: 1rem;
  }

  .benefit-card:last-child {
    margin-right: 20px;
  }

  .benefits-grid::after {
    content: '';
    flex: 0 0 10px;
  }

  .benefits-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
  }

  .benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: var(--transition);
    cursor: pointer;
  }

  .benefit-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--green);
  }

  /* =================================
     STATS CAROUSEL (MOBILE ONLY)
  ================================= */
  .stats-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    margin: 2rem -20px 0;
    width: calc(100% + 40px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 220px;
    padding: 2rem 1.5rem;
    margin-right: 1rem;
  }

  .stat-item:last-child {
    margin-right: 20px;
  }

  .stats-grid::after {
    content: '';
    flex: 0 0 10px;
  }

  .stats-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
  }

  .stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: var(--transition);
    cursor: pointer;
  }

  .stat-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--green);
  }

  /* =================================
     REVIEWS CAROUSEL (MOBILE ONLY)
  ================================= */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1.5rem 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 260px;
    padding: 1.8rem;
    margin-right: 1rem;
  }

  .review-card:last-child {
    margin-right: 20px;
  }

  .reviews-grid::after {
    content: '';
    flex: 0 0 10px;
  }

  .sec--bg {
    position: relative;
  }

  .sec--bg::before,
  .sec--bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
  }

  .sec--bg::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
  }

  .sec--bg::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
  }

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
  }

  .review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: var(--transition);
    cursor: pointer;
  }

  .review-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--green);
  }

  .social-proof-link {
    margin-top: 1.5rem;
  }

  .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  /* =================================
     FLOATING ACTION BUTTONS (MOBILE ONLY)
     These stay fixed while scrolling
  ================================= */
  .floating-actions {
    display: flex;
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
    pointer-events: auto;
  }

  .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--white);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .floating-btn:active {
    transform: scale(0.95);
  }

  .floating-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: currentColor;
    fill: none;
  }

  /* Pulse animation for attention */
  .floating-btn {
    animation: pulse-orange 2s infinite;
  }

  @keyframes pulse-orange {
    0% {
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
  }

  /* Adjust for very small screens */
  @media (max-width: 400px) {
    .floating-actions {
      bottom: 1.5rem;
      right: 1rem;
      gap: 0.8rem;
    }
    
    .floating-btn {
      width: 50px;
      height: 50px;
    }
    
    .floating-btn svg {
      width: 24px;
      height: 24px;
    }
  }

  /* Add extra padding to last section so buttons don't cover footer */
  .sec:last-child {
    padding-bottom: 5rem;
  }
}