@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ===================== TOKENS ===================== */
:root {
  --lime: #AAFF00;
  --lime-dark: #88CC00;
  --lime-dim: rgba(170, 255, 0, 0.12);
  --black: #0A0A0A;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #222222;
  --border: rgba(255, 255, 255, 0.07);
  --text: #F0F0F0;
  --text-muted: #888888;
  --text-dim: #555555;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lime: 0 0 40px rgba(170, 255, 0, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 76px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

/* ===================== TYPOGRAPHY ===================== */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.heading-xl {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
}

.heading-lg {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

.heading-sm {
  font-size: 1.25rem;
  font-weight: 600;
}

.subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.subtext.wide {
  max-width: 800px;
}

.accent {
  color: var(--lime);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--black);
}

.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-ghost {
  background: var(--lime-dim);
  color: var(--lime);
  border: 1.5px solid rgba(170, 255, 0, 0.3);
}

.btn-ghost:hover {
  background: var(--lime);
  color: var(--black);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== NAVBAR ===================== */
:root {
  --nav-h: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  pointer-events: none;
}

.navbar {
  pointer-events: all;
  width: 100%;
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 18px;
  border-radius: 100px;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--lime);
  background: rgba(170, 255, 0, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--lime);
  border-color: rgba(170, 255, 0, 0.3);
}

.nav-btn {
  padding: 9px 20px !important;
  font-size: 0.85rem !important;
  border-radius: 100px !important;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  padding-top: 100px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.open {
  transform: translateX(0);
  display: flex;
}

.drawer-links {
  padding: 0 24px;
  flex: 1;
}

.drawer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-links a {
  display: block;
  padding: 18px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--lime);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-dim);
  border: 1px solid rgba(170, 255, 0, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 20px 0 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.hero-img-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--lime);
  color: var(--black);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
}

.hero-img-accent strong {
  display: block;
  font-size: 1.8rem;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .subtext {
  margin: 0 auto;
}

/* ===================== CARDS ===================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(170, 255, 0, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.card-sm {
  padding: 24px;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--lime-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-lime {
  background: var(--lime);
  color: var(--black);
}

.card-lime h3,
.card-lime p,
.card-lime .card-icon {
  color: var(--black);
}

.card-lime .card-icon {
  background: rgba(0, 0, 0, 0.12);
}

/* Service Card */
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.svc-card:hover {
  border-color: rgba(170, 255, 0, 0.25);
  transform: translateY(-6px);
}

.svc-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.svc-card-body {
  padding: 28px;
}

.svc-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 10px;
}

.svc-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.svc-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime);
}

.svc-card-link:hover {
  gap: 12px;
}

/* Process Step */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--lime-dim);
  border: 1.5px solid rgba(170, 255, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lime);
}

.step-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stat strip */
.stat-strip {
  background: var(--lime);
  padding: 60px 0;
}

.stat-strip .stat-item {
  text-align: center;
}

.stat-strip strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
}

.stat-strip span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

/* Testimonials */
.testi-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testi-stars {
  color: var(--lime);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--lime);
  font-size: 0.85rem;
}

.testi-author strong {
  font-size: 0.9rem;
  display: block;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Brand Pill */
.brand-pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.brand-pill:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--lime-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  margin-top: 2px;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lime-dim);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lime);
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
}

.photo-grid .tall {
  grid-row: span 2;
  height: 100%;
}

.photo-grid .tall img {
  height: 100%;
}

/* CTA Banner */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--lime-dim);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--black);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding-top: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(170, 255, 0, 0.1);
}

.form-group select option {
  background: var(--surface2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Info card */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--surface2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--lime-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Area badges */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.area-badge:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Gallery masonry */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Strip */
.dark-strip {
  background: var(--surface);
}

/* Footer */
/* ===================== FOOTER ===================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding: 72px 0 60px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
  margin-bottom: 20px !important;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-list a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--lime);
}

.footer-divider {
  height: 1px;
  background: var(--border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-cert {
  font-size: 0.82rem !important;
  color: var(--lime) !important;
  font-weight: 600;
}

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

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

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ===================== HERO PAGE INNER ===================== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--surface);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 255, 0, 0.08) 0%, transparent 70%);
}

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

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb span {
  color: var(--text-dim);
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1100px) {
  .nav-links a {
    font-size: 0.8rem;
    padding: 7px 10px;
  }

  .nav-phone {
    display: none;
  }
}

@media(max-width:1024px) {
  .grid-2 {
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media(max-width:860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .site-header {
    padding: 12px 16px;
  }

  .navbar {
    border-radius: 60px;
    padding: 8px 12px;
  }
}

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

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    columns: 2;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .page-hero {
    padding: 130px 0 70px;
  }
}

@media(max-width:520px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .stat-strip .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}