/* =========================================
   LSP LINGKUNGAN HIDUP — Modern Design
   ========================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --blue-500:  #3b82f6;
  --blue-600:  #2563eb;
  --blue-700:  #1d4ed8;
  --teal-500:  #14b8a6;
  --teal-600:  #0d9488;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white:     #ffffff;

  --primary:   #16a34a;
  --primary-dark: #15803d;
  --accent:    #22c55e;
  --text:      #1e293b;
  --text-muted: #64748b;

  --gradient-main: linear-gradient(135deg, #16a34a 0%, #0d9488 50%, #2563eb 100%);
  --gradient-card: linear-gradient(135deg, #16a34a, #0d9488);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.section { padding-block: clamp(60px, 8vw, 100px); }

.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-900);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: .75rem auto 0;
}
.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(22,163,74,.4); }

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--green-50); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); }

.btn-outline-white {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

/* --- TOPBAR --- */
.topbar {
  background: var(--slate-900);
  color: var(--slate-400);
  font-size: .8125rem;
  padding: .45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: .35rem; }
.topbar-left i { color: var(--accent); font-size: .75rem; }
.topbar-right { display: flex; gap: .6rem; }
.topbar-right a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-size: .7rem;
  color: var(--slate-400);
  transition: all .2s;
}
.topbar-right a:hover { background: var(--primary); color: var(--white); }

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }

.logo { display: flex; align-items: center; gap: .75rem; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 64px;
}
.footer-brand .logo-title { color: var(--white); }
.footer-brand .logo-sub   { color: var(--slate-400); }
.logo-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  display: grid; place-items: center;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: .9375rem; font-weight: 700; color: var(--slate-900); }
.logo-sub { font-size: .7rem; color: var(--text-muted); font-weight: 400; }

.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: .3rem;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--green-50); }
.nav-link i { font-size: .65rem; transition: transform .2s; }
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

.nav-cta {
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-main);
  padding: .5rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: .4rem;
  transition: all .25s;
  box-shadow: 0 2px 10px rgba(22,163,74,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(22,163,74,.45); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s;
  z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  font-size: .875rem;
  color: var(--slate-700);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.dropdown li a:hover { background: var(--green-50); color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
  position: relative;
  background-color: var(--slate-900);
  background-image:
    linear-gradient(
      135deg,
      rgba(10, 20, 15, 0.82) 0%,
      rgba(15, 30, 20, 0.70) 40%,
      rgba(22, 163, 74, 0.22) 100%
    ),
    url('https://images.pexels.com/photos/11246275/pexels-photo-11246275.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: clamp(80px, 12vw, 130px);
  padding-bottom: 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .10;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--green-500);
  top: -200px; left: -100px;
}
.hero-shape-2 {
  width: 500px; height: 500px;
  background: var(--teal-500);
  top: 50%; right: -100px;
  transform: translateY(-50%);
}
.hero-shape-3 {
  width: 400px; height: 400px;
  background: var(--blue-500);
  bottom: -100px; left: 40%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: var(--accent);
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--slate-400);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.stat-label { font-size: .78rem; color: var(--slate-400); font-weight: 400; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 360px; height: 380px; }

.hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(22,163,74,.4);
}
.hero-circle-inner { text-align: center; color: var(--white); }
.hero-circle-inner i { font-size: 2rem; margin-bottom: .4rem; display: block; }
.hero-circle-inner p { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; line-height: 1.4; }

.hcard {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.hcard i { font-size: 1.1rem; color: var(--accent); }
.hcard-1 { top: 20px;  left: 10px;  animation-delay: 0s; }
.hcard-2 { top: 50%;   right: 5px;  transform: translateY(-50%); animation-delay: 1.3s; }
.hcard-3 { bottom: 30px; left: 30px; animation-delay: 2.6s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hcard-2 { animation: floatCard2 4s ease-in-out 1.3s infinite; }
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

.photo-credit {
  position: absolute;
  bottom: 90px;
  right: 1rem;
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  z-index: 5;
  transition: color .2s;
}
.photo-credit:hover { color: rgba(255,255,255,.7); }

.hero-wave {
  position: relative;
  height: 80px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 100%; }

/* --- QUICK LINKS --- */
.quicklinks {
  background: var(--slate-50);
  padding-block: clamp(40px, 6vw, 60px);
  border-bottom: 1px solid var(--slate-200);
}
.ql-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 280px));
  gap: 1rem;
  justify-content: center;
}
.ql-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all .25s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}
.ql-card.visible { opacity: 1; transform: translateY(0); transition: all .4s; }
.ql-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ql-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--c) 12%, white);
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--c);
}
.ql-body { flex: 1; min-width: 0; }
.ql-body h3 { font-size: .9rem; font-weight: 700; color: var(--slate-800); margin-bottom: .2rem; }
.ql-body p { font-size: .78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ql-arrow { font-size: .75rem; color: var(--slate-400); flex-shrink: 0; transition: transform .2s; }
.ql-card:hover .ql-arrow { transform: translateX(3px); color: var(--primary); }

/* --- ABOUT --- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--gradient-main);
  display: grid; place-items: center;
  font-size: 5rem;
  color: rgba(255,255,255,.25);
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--green-100);
}
.about-badge-float i { font-size: 1.2rem; }
.about-pillars {
  display: flex; gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.pillar {
  display: flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600;
  color: var(--primary);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .4rem 1rem;
  border-radius: 99px;
}
.pillar i { font-size: .8rem; }

.about-content .section-label { display: inline-block; margin-bottom: .75rem; }
.about-lead { font-size: 1.05rem; font-weight: 500; color: var(--slate-700); margin: 1rem 0; line-height: 1.7; }
.about-text { font-size: .9375rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.af-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
}
.af-item > i { font-size: 1.25rem; color: var(--primary); margin-top: .2rem; flex-shrink: 0; }
.af-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--slate-800); margin-bottom: .2rem; }
.af-item span { font-size: .83rem; color: var(--text-muted); }

/* --- SERVICES --- */
.services { background: var(--slate-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(24px);
}
.svc-card.visible { opacity: 1; transform: translateY(0); }
.svc-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-card.featured {
  background: var(--gradient-card);
  border-color: transparent;
  color: var(--white);
}
.svc-card.featured h3, .svc-card.featured p { color: rgba(255,255,255,.95); }
.svc-card.featured .svc-link { color: rgba(255,255,255,.85); }
.svc-card.featured:hover { box-shadow: 0 12px 40px rgba(22,163,74,.4); }

.svc-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--c, #16a34a) 12%, white);
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--c, #16a34a);
  margin-bottom: 1.1rem;
}
.svc-card.featured .svc-icon {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: .6rem; }
.svc-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.svc-link {
  font-size: .85rem; font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s;
}
.svc-link:hover { gap: .6rem; }
/* 2 kartu di baris terakhir (8 kartu, 3-kolom) → geser ke tengah */

.services-cta { text-align: center; margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.services-cta p { color: var(--text-muted); font-size: .9375rem; }

/* --- PROCESS --- */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  opacity: 0; transform: translateY(20px);
}
.step.visible { opacity: 1; transform: translateY(0); transition: all .5s; }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; color: var(--slate-800); }
.step p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal-500));
  margin-top: 5.5rem;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* --- NEWS --- */
.news { background: var(--slate-50); }
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: all .3s;
  opacity: 0; transform: translateY(20px);
}
.news-card.visible { opacity: 1; transform: translateY(0); }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.news-img { position: relative; aspect-ratio: 16/9; }
.news-img-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-main);
  display: grid; place-items: center;
  font-size: 3rem;
  color: rgba(255,255,255,.3);
}
.news-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.news-body { padding: 1.5rem; }
.news-body time, .ns-body time { font-size: .78rem; color: var(--text-muted); display: block; margin-bottom: .5rem; }
.news-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-800); line-height: 1.45; margin-bottom: .75rem; }
.news-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.news-link { font-size: .85rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.news-link:hover { gap: .6rem; }

.news-side { display: flex; flex-direction: column; gap: .75rem; }
.news-small {
  display: flex; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  align-items: center;
  transition: all .25s;
  opacity: 0; transform: translateX(20px);
}
.news-small.visible { opacity: 1; transform: translateX(0); }
.news-small:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.ns-img {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.25rem;
  color: var(--primary);
}
.ns-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  color: var(--primary);
  background: var(--green-50);
  border-radius: 99px;
  padding: .15rem .55rem;
  margin-bottom: .25rem;
  text-transform: uppercase;
}
.ns-body h4 { font-size: .875rem; font-weight: 600; color: var(--slate-800); line-height: 1.4; margin-bottom: .35rem; }

/* --- SCHEDULE --- */
.schedule { background: var(--white); }
.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table thead { background: var(--gradient-main); }
.schedule-table th {
  color: var(--white);
  font-size: .8125rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
  letter-spacing: .03em;
}
.schedule-table td {
  padding: .9rem 1.25rem;
  font-size: .875rem;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--slate-50); }
.badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 99px;
  text-transform: uppercase;
}
.badge-open { background: var(--green-100); color: var(--green-700); }
.badge-soon { background: #fef3c7; color: #92400e; }
.btn-sm {
  display: inline-flex; align-items: center;
  background: var(--gradient-main);
  color: var(--white);
  font-size: .78rem; font-weight: 700;
  padding: .35rem .9rem;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.btn-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,163,74,.35); }
.btn-sm-outline {
  background: none;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-sm-outline:hover { background: var(--green-50); }
.schedule-cta { text-align: center; margin-top: 2rem; }

/* --- CTA SECTION --- */
.cta-section { padding-block: clamp(40px, 6vw, 60px); background: var(--slate-50); }
.cta-box {
  background: var(--gradient-main);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
}
.cta-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 460px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- PARTNERS --- */
.partners { background: var(--white); padding-block: clamp(40px, 5vw, 60px); }
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.partner-item {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  min-width: 100px;
  text-align: center;
  color: var(--slate-500);
  font-size: .8rem; font-weight: 600;
  transition: all .25s;
}
.partner-item i { font-size: 1.5rem; color: var(--slate-400); transition: color .25s; }
.partner-item:hover { border-color: var(--primary); color: var(--primary); }
.partner-item:hover i { color: var(--primary); }

/* --- FOOTER --- */
.footer { background: var(--slate-900); }
.footer-top { padding-block: clamp(50px, 7vw, 80px); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.footer-brand p {
  font-size: .875rem;
  color: var(--slate-400);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-size: .8rem;
  color: var(--slate-400);
  transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

.footer-col h4, .footer-contact h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .875rem; color: var(--slate-400); transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }

.contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.contact-item i { font-size: .85rem; color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.contact-item span { font-size: .875rem; color: var(--slate-400); line-height: 1.6; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.25rem; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: var(--slate-500);
  flex-wrap: wrap; gap: .5rem;
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 44px; height: 44px;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .step-connector { display: none; }
  .step { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.6);
    backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: all .3s;
    z-index: 900;
    padding-top: 80px;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    width: 280px;
    height: 100%;
    padding: 1.5rem;
    gap: .25rem;
    overflow-y: auto;
  }
  .nav-list > li { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: .75rem 1rem; }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1.25rem;
    padding-top: .25rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { width: 100%; justify-content: center; margin-top: .5rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-inline: auto; }

  .ql-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-box { text-align: center; justify-content: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ql-grid { grid-template-columns: 1fr; }
  .step { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: .75rem; }
  .hero-stat-divider { display: none; }
}
