/* ========================================
   MAXSERVICE — Homepage Stylesheet
   Color Theme: Mệnh Mộc (Wood Element)
   Fonts: Outfit (headings) + Plus Jakarta Sans (body)
   ======================================== */

/* ===== 1. CSS CUSTOM PROPERTIES ===== */
:root {
  /* Wood Element Palette */
  --primary-darkest: #14342A;
  --primary-dark: #1B4332;
  --primary: #2D6A4F;
  --primary-hover: #245A42;
  --primary-light: #40916C;
  --primary-lighter: #52B788;
  --primary-lightest: #74C69D;
  --primary-pale: #B7E4C7;
  --primary-bg: #D8F3DC;
  --primary-bg-subtle: #F0FFF4;

  /* Neutrals */
  --white: #ffffff;
  --black: #0a0a0a;
  --text: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --text-inverse: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8faf8;
  --border: #e2e8e4;
  --border-light: #eef2ef;

  /* Green-Tinted Shadows */
  --shadow-xs: 0 1px 2px rgba(27, 67, 50, 0.04);
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.10);
  --shadow-xl: 0 16px 48px rgba(27, 67, 50, 0.12);

  /* Typography */
  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container: 1200px;
  --nav-height: 80px;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 50rem;

  /* Motion — premium cubic-bezier only */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 400ms;
  --duration-slow: 700ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--primary-lighter);
  color: var(--white);
}

/* ===== 3. UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary-lighter);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* ===== 4. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98) translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid var(--primary-lighter);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-inverse);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--text-inverse);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--text-inverse);
}

.btn-dark:hover {
  background: var(--primary-darkest);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn-accent {
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--primary-lightest);
}

.btn i {
  font-size: 1.1em;
}

/* ===== 5. NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--primary-dark);
  transition: all var(--duration) var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(27, 67, 50, 0.08);
}

.header.scrolled .nav-link {
  color: var(--text-secondary);
}

.header.scrolled .nav-logo {
  color: var(--primary-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-inverse);
  flex-shrink: 0;
  transition: color var(--duration) var(--ease);
}

.nav-logo-icon {
  display: none;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-logo-tagline {
  font-size: 0.62rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.nav-link:hover{
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--primary-bg-subtle);
}

.nav-link i {
  font-size: 0.7em;
  transition: transform var(--duration) var(--ease);
}

/* ===== SUBMENU DROPDOWN (Desktop only) ===== */
@media (min-width: 1025px) {
  .nav-links .menu-item-has-children {
    position: relative;
  }

  .nav-links .menu-item-has-children > a .ph-caret-down {
    display: none;
  }

  .nav-links .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.35em;
    transition: transform var(--duration) var(--ease);
    vertical-align: middle;
  }

  .nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    padding: 0.5rem 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--duration) var(--ease);
    z-index: 100;
    list-style: none;
  }

  .nav-links .sub-menu li {
    position: relative;
  }

  .nav-links .sub-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
  }

  .nav-links .sub-menu a:hover,
  .nav-links .sub-menu a:focus {
    color: var(--primary);
    background: var(--primary-bg-subtle);
  }

  .nav-links .menu-item-has-children:hover > .sub-menu,
  .nav-links .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
  }

  /* Nested submenu (cấp 3) */
  .nav-links .sub-menu .menu-item-has-children > a::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: rotate(-90deg);
  }

  .nav-links .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 4px;
  }

  .nav-links .sub-menu .menu-item-has-children:hover > .sub-menu {
    transform: translateX(0);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.header.scrolled .nav-hamburger span {
  background: var(--text);
}

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

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

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

/* ===== 6. MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

/* Close button in mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 111;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  transition: all 0.4s var(--ease);
}

.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition-delay: 200ms;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.05);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 320px;
}

.mobile-menu-links li {
  width: 100%;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-inverse);
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease);
  width: 100%;
  text-align: center;
  display: block;
}

.mobile-menu.open .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-links li:nth-child(1) a { transition-delay: 100ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) a { transition-delay: 150ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) a { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) a { transition-delay: 250ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) a { transition-delay: 300ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(6) a { transition-delay: 350ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(7) a { transition-delay: 400ms; }
.mobile-menu.open .mobile-menu-links li:nth-child(8) a { transition-delay: 450ms; }

.mobile-menu-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu .mobile-menu-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease) 400ms;
}

.mobile-menu .mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

.mobile-menu.open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 7. HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../banner-hero-section.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgb(28 53 42 / 88%) 0%, rgb(0 0 0 / 74%) 40%, rgb(12 12 12 / 0%) 70%, rgb(27 67 50 / 0%) 100%);
  z-index: 1;
}

/* Noise overlay for texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-lightest);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary-lighter);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-inverse);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: var(--primary-lightest);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  background: var(--primary-lighter);
  color: var(--primary-darkest);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(82, 183, 136, 0.3);
}

.hero-actions .btn-primary:hover {
  background: var(--primary-lightest);
  box-shadow: 0 6px 24px rgba(82, 183, 136, 0.4);
}

/* ===== 8. SERVICES ===== */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

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

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

.service-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 67, 50, 0.06) 100%);
}

.service-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem 1.25rem;
}

.service-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50%;
  font-size: 14px;
  transition: all var(--duration) var(--ease);
}

.service-card:hover .service-card-arrow {
  background: var(--primary);
  color: var(--white);
  transform: translateX(2px);
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  background: var(--primary-bg-subtle);
  border: 1px dashed var(--primary-pale);
  border-radius: var(--radius-xl);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.services-note i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== 9. ABOUT ===== */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary-bg-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(27, 67, 50, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-content .eyebrow::before {
  display: none;
}

.about-content .section-title {
  margin-bottom: 1.25rem;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}

.about-feature:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-pale);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.about-feature p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== 10. PROCESS ===== */
.process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary-bg);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.process-step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  position: relative;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary-bg);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 24px;
  margin-bottom: 1rem;
  transition: all var(--duration) var(--ease);
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 18ch;
}

/* ===== 11. WHY CHOOSE ===== */
.why-choose {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary-bg-subtle);
}

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

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pale);
}

.reason-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 24px;
  margin-bottom: 1rem;
  transition: all var(--duration) var(--ease);
}

.reason-card:hover .reason-icon {
  background: var(--primary);
  color: var(--white);
}

.reason-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 28ch;
}

/* ===== 12. ESHOP ===== */
.eshop {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.eshop-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.eshop-info {
  background: var(--primary);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.eshop-info h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.eshop-info p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.eshop-info .btn {
  align-self: flex-start;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.eshop-info .btn:hover {
  background: var(--primary-bg);
}

.eshop-slider-wrapper {
  position: relative;
  padding: 2rem 1rem 2rem 0;
  overflow: hidden;
}

.eshop-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.5rem;
}

.eshop-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 200px;
  max-width: 200px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-pale);
}

.product-card-image {
  height: 140px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  max-height: 110px;
  object-fit: contain;
  transition: transform var(--duration) var(--ease);
}

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

.product-card-body {
  padding: 1rem;
}

.product-card-body h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-rating .stars {
  display: flex;
  gap: 1px;
  color: #f0b429;
  font-size: 12px;
}

.product-rating .stars .empty {
  color: var(--border);
}

.product-rating span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.eshop-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.eshop-nav:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.eshop-nav-prev {
  left: 0;
}

.eshop-nav-next {
  right: 0.5rem;
}

/* ===== 13. TESTIMONIALS ===== */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pale);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-avatar.green {
  background: var(--primary);
}

.testimonial-avatar.teal {
  background: #0d9488;
}

.testimonial-avatar.emerald {
  background: var(--primary-light);
}

.testimonial-author h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-author p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f0b429;
  font-size: 14px;
  margin-bottom: 0.85rem;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 1.5rem;
  color: var(--primary-lighter);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 0.1rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonials-dot {
  width: 32px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.testimonials-dot.active {
  background: var(--primary);
  width: 48px;
}

/* ===== 14. BOOKING FORM ===== */
.booking {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info {
  color: var(--text-inverse);
}

.booking-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-lighter);
  margin-bottom: 1.25rem;
}

.booking-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.booking-checklist li i {
  color: var(--primary-lighter);
  font-size: 1.1rem;
}

.booking-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.booking-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.form-group label .required {
  color: #f87171;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.88rem;
  transition: all var(--duration) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.5)' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--primary-dark);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-lighter);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.booking-form-submit .btn {
  background: var(--primary-lighter);
  color: var(--primary-darkest);
  font-weight: 700;
  padding: 0.8rem 2rem;
}

.booking-form-submit .btn:hover {
  background: var(--primary-lightest);
  box-shadow: 0 4px 16px rgba(82, 183, 136, 0.3);
}

/* ===== 15. FOOTER ===== */
.footer {
  background: var(--primary-darkest);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  transition: all var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--primary-lighter);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.footer-contact-item i {
  color: var(--primary-lighter);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration) var(--ease);
}

.footer-social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-lang h5 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-lang-item {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.footer-lang-item:hover,
.footer-lang-item.active {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-lighter);
}

/* ===== 16. SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease),
    transform var(--duration-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* ===== 17. RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {

  :root {
    --nav-height: 72px;
  }

  .nav-logo-img {
    height: 48px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrapper img {
    min-height: 300px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
  }

  .process-steps::before {
    display: none;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eshop-wrapper {
    grid-template-columns: 1fr;
  }

  .eshop-info {
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .eshop-info p {
    margin-bottom: 0;
  }

  .eshop-slider-wrapper {
    padding: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --nav-height: 60px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 90dvh;
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
  }

  .process-step-number {
    box-shadow: none;
    margin-bottom: 0;
  }

  .process-step-icon {
    display: none;
  }

  .process-step-text {
    flex: 1;
  }

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

  .eshop-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .eshop-info p {
    margin-bottom: 1rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Mobile submenu accordion */
.mobile-menu .mobile-menu-links .menu-item-has-children {
  position: static;
}

.mobile-menu .mobile-menu-links .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.35em;
  transition: transform var(--duration) var(--ease);
  vertical-align: middle;
}

.mobile-menu .mobile-menu-links .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  margin: 0.25rem 0 0.5rem 1rem;
  padding: 0.25rem 0;
  display: none;
  transition: none;
}

.mobile-menu .mobile-menu-links .sub-menu.open {
  display: block;
}

.mobile-menu .mobile-menu-links .sub-menu a {
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.mobile-menu .mobile-menu-links .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.mobile-menu .mobile-menu-links .menu-item-has-children.open > a::after {
  transform: rotate(-135deg);
}

/* =============================================
   LANDING PAGE — SERVICE PAGES
   ============================================= */

/* ===== LP HERO OVERRIDES ===== */
.lp-hero-bg {
  background-image: url('https://picsum.photos/seed/solar-rooftop-hero/1920/1000');
}

.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.lp-hero-badge i {
  font-size: 0.95rem;
  color: var(--primary-lightest);
}

/* ===== LP INTRO ===== */
.lp-intro {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.lp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-intro-content .eyebrow::before {
  display: none;
}

.lp-intro-content .section-title {
  margin-bottom: 1.25rem;
}

.lp-intro-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.lp-intro-highlights {
  display: flex;
  gap: 2rem;
}

.lp-intro-stat {
  display: flex;
  flex-direction: column;
}

.lp-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lp-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.lp-intro-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lp-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* ===== LP SERVICE ITEMS ===== */
.lp-items {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary-bg-subtle);
}

.lp-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.lp-item-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.lp-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pale);
}

.lp-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 22px;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}

.lp-item-card:hover .lp-item-icon {
  background: var(--primary);
  color: var(--white);
}

.lp-item-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.lp-item-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.lp-item-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-bg);
  line-height: 1;
  transition: color var(--duration) var(--ease);
}

.lp-item-card:hover .lp-item-number {
  color: var(--primary-pale);
}

/* ===== LP PROCESS ===== */
.lp-process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.lp-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}

.lp-process-dot {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-bg);
  transition: all var(--duration) var(--ease);
}

.lp-process-step:hover .lp-process-dot {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--primary-pale);
  transform: scale(1.08);
}

.lp-process-line {
  position: absolute;
  top: 28px;
  left: -35%;
  right: 50%;
  height: 2px;
  background: var(--primary-bg);
  z-index: 1;
}

.lp-process-step:first-child .lp-process-line {
  display: none;
}

.lp-process-step h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.lp-process-step p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 16ch;
}

/* ===== LP TIMELINE ===== */
.lp-timeline {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary-bg-subtle);
}

.lp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.lp-timeline-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

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

.lp-timeline-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.lp-timeline-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
}

.lp-timeline-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 26px;
}

.lp-timeline-featured .lp-timeline-icon {
  background: var(--primary);
  color: var(--white);
}

.lp-timeline-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.lp-timeline-featured .lp-timeline-badge {
  color: var(--white);
  background: var(--primary);
}

.lp-timeline-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.lp-timeline-power {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.lp-timeline-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--primary-bg-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.lp-timeline-duration i {
  color: var(--primary);
  font-size: 1.1rem;
}

.lp-timeline-duration strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.lp-timeline-details {
  text-align: left;
  margin-bottom: 1.5rem;
}

.lp-timeline-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lp-timeline-details li i {
  color: var(--primary-lighter);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lp-timeline-card .btn {
  width: 100%;
}

/* ===== LP WARRANTY ===== */
.lp-warranty {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.lp-warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-warranty-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.lp-warranty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-pale);
}

.lp-warranty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 24px;
}

.lp-warranty-card:hover .lp-warranty-icon {
  background: var(--primary);
  color: var(--white);
}

.lp-warranty-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.lp-warranty-years {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.lp-warranty-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.lp-warranty-years span:last-child {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.lp-warranty-card ul {
  text-align: left;
}

.lp-warranty-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.lp-warranty-card ul li i {
  color: var(--primary-lighter);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== LP CTA ===== */
.lp-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.lp-cta-info {
  color: var(--text-inverse);
}

.lp-cta-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lp-cta-info h2 em {
  font-style: normal;
  color: var(--primary-lightest);
}

.lp-cta-info > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 45ch;
}

.lp-cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.lp-cta-benefit i {
  color: var(--primary-lighter);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.lp-cta-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lp-cta-form .form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.lp-cta-form .form-group input,
.lp-cta-form .form-group select,
.lp-cta-form .form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.88rem;
  transition: all var(--duration) var(--ease);
}

.lp-cta-form .form-group input::placeholder,
.lp-cta-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lp-cta-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.5)' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.lp-cta-form .form-group select option {
  background: var(--primary-dark);
  color: var(--white);
}
.wpcf7 form .wpcf7-response-output{
  margin-top:0px;
}
.lp-cta-form .form-group input:focus,
.lp-cta-form .form-group select:focus,
.lp-cta-form .form-group textarea:focus {
  border-color: var(--primary-lighter);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.lp-cta-form .form-group textarea {
  max-height: 140px;
  resize: vertical;
}

.lp-cta-form .booking-form-submit .btn {
  background: var(--primary-lighter);
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 2rem;
  width: 100%;
}

.lp-cta-form .booking-form-submit .btn:hover {
  background: var(--primary-lightest);
  box-shadow: 0 4px 16px rgba(82, 183, 136, 0.3);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* ===== LP RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-intro-image {
    order: -1;
  }

  .lp-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .lp-process-line {
    display: none;
  }

  .lp-timeline-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .lp-warranty-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .lp-cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .lp-hero-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lp-intro-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .lp-intro-stat {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .lp-stat-number {
    font-size: 1.5rem;
    min-width: 65px;
  }

  .lp-items-grid {
    grid-template-columns: 1fr;
  }

  .lp-process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .lp-process-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
  }

  .lp-process-dot {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .lp-process-step p {
    max-width: none;
  }
}

/* ===== LP HERO — ELECTRIC ===== */
.lp-hero-bg-electric {
  background-image: url('https://picsum.photos/seed/electrician-work-hero/1920/1000');
}

.lp-hero-bg-water {
  background-image: url('https://picsum.photos/seed/plumber-pipe-work-hero/1920/1000');
}

.lp-hero-bg-heater {
  background-image: url('https://picsum.photos/seed/cozy-fireplace-winter/1920/1000');
}

.lp-hero-bg-car {
  background-image: url('https://picsum.photos/seed/car-garage-workshop/1920/1000');
}

.lp-hero-bg-detailing {
  background-image: url('https://picsum.photos/seed/car-detail-studio/1920/1000');
}

/* ===== LP GALLERY ===== */
.lp-gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--primary-bg-subtle);
}

.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.lp-gallery-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.lp-gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform 0.5s var(--ease);
}

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

.lp-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}

.lp-gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LP FAQ ===== */
.lp-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.lp-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.lp-faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.lp-faq-item:hover {
  border-color: var(--primary-pale);
}

.lp-faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.08);
}

.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  list-style: none;
  gap: 1rem;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::marker {
  content: '';
}

.lp-faq-item summary:hover {
  color: var(--primary);
}

.lp-faq-item summary i {
  font-size: 1.1rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.lp-faq-item[open] summary i {
  transform: rotate(180deg);
  color: var(--primary);
}

.lp-faq-item[open] summary {
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
}

.lp-faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--bg-alt);
  animation: faqFadeIn 0.3s var(--ease);
}

.lp-faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LP CTA HOTLINE BUTTON ===== */
.lp-cta-hotline {
  margin-top: 2rem;
}

.btn-accent {
  background: var(--primary-lighter);
  color: var(--primary-darkest);
  font-weight: 700;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}

.btn-accent:hover {
  background: var(--primary-lightest);
  box-shadow: 0 4px 20px rgba(82, 183, 136, 0.35);
  transform: translateY(-2px);
}

/* ===== LP GALLERY & FAQ RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .lp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lp-gallery-wide {
    grid-column: span 1;
  }

  .lp-gallery-item img {
    min-height: 200px;
  }

  .lp-gallery-item figcaption {
    opacity: 1;
    transform: translateY(0);
  }

  .lp-faq-item summary {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
  z-index: 9999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.back-to-top:active {
  transform: translateY(-2px) scale(1);
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}