/* ==========================================================================
   Tapper Turf & Land - Main Stylesheet
   Colors: Forest Green (#2d5a27), Dark Green (#1a3a17), Lime Accent (#4caf50),
           Earth Brown (#5c4033), Gold (#c5961a), Off-white (#f8f9f5)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green-dark: #1a3a17;
  --green-primary: #2d5a27;
  --green-medium: #3a7d32;
  --green-light: #4caf50;
  --green-bg: #e8f5e3;
  --green-pale: #f1f8ee;
  --earth-brown: #5c4033;
  --gold: #c5961a;
  --gold-light: #e2b84b;
  --off-white: #f8f9f5;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #d4d4d4;
  --gray-500: #777777;
  --gray-700: #444444;
  --gray-900: #222222;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-light); }

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.bg-green-pale { background-color: var(--green-pale); }
.bg-green-bg { background-color: var(--green-bg); }
.bg-green-dark { background-color: var(--green-dark); color: var(--white); }
.bg-off-white { background-color: var(--off-white); }

.text-green { color: var(--green-primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 20px auto 0;
}

.badge-gold {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn-tt-primary {
  background: var(--green-primary);
  color: var(--white);
  border: 2px solid var(--green-primary);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-tt-primary:hover {
  background: var(--green-medium);
  border-color: var(--green-medium);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-tt-outline {
  background: var(--white);
  color: var(--green-primary);
  border: 2px solid var(--white);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-tt-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-tt-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-tt-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar .bi {
  margin-right: 5px;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: all var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 6px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-brand .brand-text {
  line-height: 1.1;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  transition: color var(--transition);
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--green-primary) !important;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--green-primary);
  border-radius: 2px;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 260px;
}

.navbar .dropdown-item {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
}

.navbar .dropdown-item:hover {
  background: var(--green-bg);
  color: var(--green-primary);
}

.navbar .dropdown-item .bi {
  color: var(--green-primary);
  margin-right: 8px;
}

.nav-cta .btn-tt-primary {
  padding: 8px 24px;
  font-size: 0.9rem;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,23,0.85) 0%, rgba(45,90,39,0.7) 50%, rgba(26,58,23,0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  max-width: 580px;
  margin-bottom: 30px;
}

.hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.hero .hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero .hero-badge .bi {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 40px;
}

.stat-item {
  text-align: center;
  padding: 10px 15px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 5px;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card .card-img-wrapper {
  height: 220px;
  overflow: visible;
  position: relative;
}

.service-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.service-card .card-img-wrapper .service-icon {
  position: absolute;
  bottom: -25px;
  left: 24px;
  width: 50px;
  height: 50px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  z-index: 2;
}

.service-card .card-body {
  padding: 35px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card .card-body p {
  color: var(--gray-500);
  font-size: 0.95rem;
  flex: 1;
}

.service-card .card-body .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

.service-card .card-body .card-link .bi {
  transition: transform var(--transition);
}

.service-card:hover .card-body .card-link .bi {
  transform: translateX(4px);
}

/* ---------- Why Choose Us ---------- */
.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--green-primary);
  transition: all var(--transition);
}

.why-card:hover .icon-circle {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---------- Google Reviews ---------- */
.reviews-section {
  position: relative;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.review-source {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.google-rating-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px 35px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.google-rating-badge .rating-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.google-rating-badge .rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
}

.google-rating-badge .rating-text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* ---------- Quick Contact Form ---------- */
.quick-contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}

.quick-contact-form h3 {
  margin-bottom: 5px;
}

.quick-contact-form p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-control,
.form-select {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 0.2rem rgba(45,90,39,0.15);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}

/* ---------- Services Page ---------- */
.page-hero {
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,23,0.88) 0%, rgba(45,90,39,0.75) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero .breadcrumb {
  margin: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb-item.active {
  color: var(--gold-light);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* Service Detail Accordion */
.service-detail-card {
  border: none;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.service-detail-card .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 20px 25px;
  color: var(--green-dark);
  background: var(--white);
}

.service-detail-card .accordion-button:not(.collapsed) {
  background: var(--green-bg);
  color: var(--green-primary);
  box-shadow: none;
}

.service-detail-card .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5a27'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.service-detail-card .accordion-body {
  padding: 25px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.service-feature-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.95rem;
}

.service-feature-list li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

/* ---------- Projects Gallery ---------- */
.project-filters .btn {
  margin: 4px;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--transition);
}

.project-filters .btn:hover,
.project-filters .btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  margin-bottom: 24px;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card .project-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.project-card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,23,0.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card .project-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.project-card .project-info {
  padding: 18px 20px;
}

.project-card .project-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.project-card .project-info .project-location {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.project-card .project-info .project-tag {
  background: var(--green-bg);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 15px;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
}

.ba-slider img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

.ba-slider .ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 5;
  cursor: ew-resize;
}

.ba-slider .ba-handle::before {
  content: '\2B9E \2B9C';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green-primary);
  box-shadow: var(--shadow-md);
  letter-spacing: 4px;
}

.ba-label {
  position: absolute;
  top: 15px;
  padding: 4px 14px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.ba-label.before { left: 15px; }
.ba-label.after { right: 15px; }

/* ---------- Cost Estimator ---------- */
.estimator-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-bg);
}

.estimator-result {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  margin-top: 20px;
  display: none;
}

.estimator-result .price-range {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
}

.estimator-result .price-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 5px;
}

/* ---------- Service Area Map ---------- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.map-container .leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
}

.city-list-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.city-chip {
  background: var(--green-bg);
  color: var(--green-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.city-chip:hover,
.city-chip.active {
  background: var(--green-primary);
  color: var(--white);
}

/* ---------- Booking Calendar ---------- */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-bg);
}

.flatpickr-calendar {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--green-primary) !important;
  border-color: var(--green-primary) !important;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 15px;
}

.time-slot-btn {
  padding: 10px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.time-slot-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.time-slot-btn.selected {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}

.time-slot-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Careers ---------- */
.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--green-primary);
  margin-bottom: 16px;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
}

.job-card h4 {
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.job-meta span .bi {
  color: var(--green-primary);
}

/* ---------- About Timeline ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green-bg);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--green-primary);
  border: 4px solid var(--green-bg);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  width: 44%;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 6%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  margin-left: 6%;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-primary);
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-primary);
}

.contact-info-card h5 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

.google-map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.site-footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.site-footer a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact-item .bi {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  padding-left: 0;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ---------- Testimonials Carousel ---------- */
.testimonial-carousel .carousel-item {
  padding: 20px;
}

.testimonial-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card-lg .quote-icon {
  font-size: 3rem;
  color: var(--green-bg);
  line-height: 1;
}

.testimonial-card-lg blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-700);
  margin: 15px 0 20px;
  line-height: 1.8;
}

/* ---------- Blog Stub ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .blog-body {
  padding: 22px;
}

.blog-card .blog-date {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.blog-card .blog-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card-link:hover {
  color: inherit;
  text-decoration: none;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--green-primary);
  color: var(--white);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Form validation states ---------- */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--green-primary);
}

.invalid-feedback {
  font-size: 0.8rem;
}

/* ---------- Toast notification ---------- */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 991px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.5rem; }
  .stats-bar { margin-top: -30px; padding: 20px; }
  .stat-number { font-size: 2rem; }
  .section-padding { padding: 60px 0; }

  .timeline::before { left: 30px; }
  .timeline-dot { left: 30px; }
  .timeline-content { width: calc(100% - 70px); margin-left: 70px !important; margin-right: 0 !important; }

  .navbar .nav-link.active::after { display: none; }
}

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero .lead { font-size: 1.05rem; }
  .section-padding { padding: 50px 0; }
  .stats-bar { margin-top: 0; border-radius: 0; }
  .stat-item { padding: 10px 5px; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.8rem; }
  .page-hero { min-height: 260px; }
  .time-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-slider img { height: 250px; }
  .quick-contact-form { padding: 25px; }
  .estimator-card { padding: 25px; }
  .booking-card { padding: 25px; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .hero-badges { gap: 8px; }
  .hero .hero-badge { font-size: 0.8rem; padding: 6px 12px; }
  .btn-tt-primary, .btn-tt-outline, .btn-tt-gold { padding: 10px 24px; font-size: 0.9rem; }
  .google-rating-badge { flex-direction: column; text-align: center; gap: 10px; }
}

/* ---------- Print ---------- */
@media print {
  .top-bar, .navbar, .site-footer, .cta-banner { display: none; }
  .hero { min-height: auto; padding: 30px 0; }
  .hero::before { background: none; }
  .hero h1 { color: #000; text-shadow: none; }
  body { color: #000; }
}
