/* ================================================
   CLEARVIEW TREE SERVICES — Stylesheet
   ================================================ */

/* --- Custom Properties --- */
:root {
  /* Orange brand palette */
  --c-dark:    #bf5a08;
  --c-mid:     #e0731a;
  --c-accent:  #f5972a;
  --c-light:   #fde8c4;
  --c-xlight:  #fff8f1;

  /* Green — kept for hero & Why Us section backgrounds */
  --c-green-dark:   #1b4332;
  --c-green-mid:    #2d6a4f;
  --c-green-accent: #52b788;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.18);

  --radius:    12px;
  --radius-lg: 24px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}
.btn-full { width: 100%; }
.btn-primary {
  background: var(--c-mid);
  color: var(--white);
  border-color: var(--c-mid);
}
.btn-primary:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--c-mid);
  border-color: var(--c-mid);
}
.btn-outline:hover {
  background: var(--c-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Common --- */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--c-light);
  color: var(--c-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.65); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
  padding: 13px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
}
.navbar.scrolled .nav-brand { color: var(--gray-900); }
.brand-icon { font-size: 1.55rem; line-height: 1; }
.brand-name em {
  font-style: normal;
  color: var(--c-accent);
}
.navbar.scrolled .brand-name em { color: var(--c-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s;
  position: relative;
}
.nav-links li a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nav-links li a:not(.btn-nav):hover::after { width: 100%; }
.navbar.scrolled .nav-links li a { color: var(--gray-600); }
.navbar.scrolled .nav-links li a:hover { color: var(--c-mid); }

.btn-nav {
  padding: 10px 22px;
  background: var(--c-mid);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-nav:hover {
  background: var(--c-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.btn-nav::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--gray-800); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(150deg, #0c1f14 0%, #1b4332 35%, #2d6a4f 70%, #1e5438 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-shapes::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.13) 0%, transparent 65%);
}
.hero-bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--c-accent);
}
.hero-content > p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.stat { flex: 1; text-align: center; }
.stat:first-child { text-align: left; }
.stat:last-child  { text-align: right; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 5px;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-fallback-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, var(--c-mid), var(--c-dark));
}
.hero-img-wrap.no-img .hero-fallback-icon { opacity: 1; }
.hero-img-wrap.no-img img { display: none; }

.hero-rating {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.rating-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.3;
}
.rating-text span {
  font-size: 0.73rem;
  color: var(--gray-500);
}
.hero-badge-card {
  position: absolute;
  top: 28px;
  right: -16px;
  background: var(--c-green-mid);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero-badge-card strong {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
}
.hero-badge-card span {
  font-size: 0.72rem;
  opacity: 0.85;
  white-space: nowrap;
}

/* ================================================
   SERVICES
   ================================================ */
.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-mid), var(--c-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(140deg, var(--c-dark) 0%, var(--c-mid) 100%);
  color: var(--white);
  border-color: transparent;
}
.service-card.featured::after {
  background: var(--c-accent);
  transform: scaleX(1);
}
.service-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card.featured h3 { color: var(--white); }
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.68;
  margin-bottom: 20px;
}
.service-card.featured p { color: rgba(255,255,255,0.72); }
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-mid);
  transition: color 0.2s;
}
.service-card.featured .service-link { color: var(--c-light); }
.service-link:hover { text-decoration: underline; }

/* ================================================
   ABOUT
   ================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 390px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--c-mid), var(--c-dark));
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 255px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background: linear-gradient(135deg, var(--c-accent), var(--c-mid));
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-years-badge {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green-mid);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 2;
}
.badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.35;
  margin-top: 4px;
}

.about-content .section-tag { margin-bottom: 14px; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-features {
  margin: 26px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about-features li {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================
   WHY US
   ================================================ */
.why-us {
  background: linear-gradient(140deg, #1b4332 0%, #2d6a4f 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(82,183,136,0.07);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(82,183,136,0.06);
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s var(--ease);
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.18);
}
.feature-icon {
  font-size: 2.3rem;
  display: block;
  margin-bottom: 16px;
}
.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial-card.featured {
  background: linear-gradient(140deg, var(--c-dark), var(--c-mid));
  border-color: transparent;
}
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card > p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-card.featured > p { color: rgba(255,255,255,0.78); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-card.featured .testimonial-author { border-top-color: rgba(255,255,255,0.14); }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-light);
  color: var(--c-dark);
  font-size: 0.77rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 600;
}
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 14px; }
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 38px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--c-xlight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.13);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 14px;
}

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3.2rem; margin-bottom: 18px; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); }

.footer-main { padding: 72px 0 52px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .nav-brand { color: var(--white); }
.footer-brand .brand-name em { color: var(--c-accent); }
.footer-brand > p {
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 260px;
  margin: 16px 0 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.social-links a:hover {
  background: var(--c-mid);
  border-color: var(--c-mid);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--c-accent); }
.footer-contact-info { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-info p {
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-badges { display: flex; gap: 8px; }
.footer-badges span {
  font-size: 0.72rem;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.45);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.10s; }
.fade-up[data-delay="2"] { transition-delay: 0.20s; }
.fade-up[data-delay="3"] { transition-delay: 0.30s; }
.fade-up[data-delay="4"] { transition-delay: 0.40s; }
.fade-up[data-delay="5"] { transition-delay: 0.50s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content > p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .stat:first-child,
  .stat:last-child { text-align: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 340px; }
  .about-img-main  { width: 65%; height: 280px; }
  .about-img-secondary { width: 50%; height: 200px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { padding: 36px 28px; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.15rem; color: rgba(255,255,255,0.9); }
  .btn-nav { font-size: 1.1rem; padding: 14px 32px; }

  .services-grid    { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .stat:first-child,
  .stat:last-child { text-align: center; }

  .features-grid   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}
