@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --brand-500: #2179BB;
  --brand-400: #3a8fcd;
  --brand-600: #1a6299;
  --brand-700: #154d7a;
  --brand-light: #e8f4fc;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--slate-800);
  line-height: 1.7;
  background: var(--slate-50);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.header-top {
  background: var(--slate-900);
  padding: 0.5rem 0;
}

.header-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-200);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-contact-item:hover {
  color: var(--brand-400);
}

.header-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-500);
}

.header-main {
  padding: 1rem 0;
}

.header-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 60px;
  width: auto;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-700);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--brand-500);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--slate-900);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
  border-top: 3px solid var(--brand-500);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.875rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--slate-700);
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown-link:hover {
  background: var(--slate-50);
  color: var(--slate-900);
  border-left-color: var(--brand-500);
}

.btn-estimate {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 121, 187, 0.3);
}

.btn-estimate:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(33, 121, 187, 0.4);
}

.btn-estimate svg {
  width: 18px;
  height: 18px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 1001;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.mobile-menu-logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--slate-100);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--slate-200);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  color: var(--slate-700);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-800);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.mobile-nav-sublink {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--slate-600);
  text-decoration: none;
  padding: 0.75rem 0 0.75rem 1.5rem;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(15, 23, 42, 0.9) 100%);
}

/* Geometric overlay shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  opacity: 0.1;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 20%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 10px) rotate(-3deg); }
  75% { transform: translate(15px, 15px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(33, 121, 187, 0.15);
  border: 1px solid rgba(33, 121, 187, 0.3);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-400);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title-accent {
  color: var(--brand-400);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--brand-500);
  opacity: 0.4;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn-hero-primary {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  padding: 1.125rem 2.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(33, 121, 187, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--brand-400), var(--brand-500));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(33, 121, 187, 0.45);
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
}

.btn-hero-secondary {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary svg {
  width: 20px;
  height: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero stats card */
.hero-stats-card {
  display: none;
}

@media (min-width: 1024px) {
  .hero-stats-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
  }
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item:nth-child(2)::after {
  display: none;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--brand-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--brand-500);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--slate-600);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--slate-50);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.service-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--brand-700);
}

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

/* ===== ABOUT SECTION ===== */
.about {
  padding: 6rem 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.about-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--brand-500);
  border-left: 4px solid var(--brand-500);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--brand-500);
  border-right: 4px solid var(--brand-500);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(33, 121, 187, 0.3);
}

@media (min-width: 1024px) {
  .about-badge {
    left: auto;
    right: -40px;
    bottom: 40px;
    transform: none;
  }
}

.about-badge-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.about-badge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text h2 span {
  color: var(--brand-400);
}

.about-text p {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--brand-500);
}

.about-feature svg {
  width: 24px;
  height: 24px;
  color: var(--brand-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-feature span {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--slate-200);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.testimonials-header {
  position: relative;
  z-index: 10;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-500);
  opacity: 0.1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}

.testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate-800);
  letter-spacing: 0.02em;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.btn-reviews {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-700);
  background: transparent;
  border: 2px solid var(--slate-300);
  padding: 1rem 2.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-reviews:hover {
  border-color: var(--brand-500);
  color: var(--brand-600);
  background: rgba(33, 121, 187, 0.05);
}

.btn-reviews svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-reviews:hover svg {
  transform: translateX(4px);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.cta .btn-hero-primary {
  margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.contact-info h2 span {
  color: var(--brand-500);
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-item-content h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--slate-800);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item-content a:hover {
  color: var(--brand-600);
}

.contact-accreditations {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}

.contact-accreditations img {
  height: 70px;
  width: auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.contact-accreditations img:hover {
  filter: grayscale(0%);
}

.contact-map {
  position: relative;
  height: 400px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate-900);
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-500);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-links a svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.footer-links a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--slate-400);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-400);
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: var(--slate-400);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--brand-400);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

/* ===== SUBPAGE HERO ===== */
.hero-subpage {
  min-height: 80vh;
}

/* ===== ROOFING OVERVIEW SECTION ===== */
.roofing-overview {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.roofing-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.roof-components-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .roof-components-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .roof-components-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roof-component-card {
  position: relative;
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roof-component-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.roof-component-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.roof-component-card:hover::before {
  transform: scaleX(1);
}

.roof-component-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.roof-component-card:hover .roof-component-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.roof-component-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.roof-component-card:hover .roof-component-icon svg {
  color: var(--white);
}

.roof-component-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.roof-component-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== ROOFING SERVICE DETAIL SECTIONS ===== */
.roofing-service-detail {
  padding: 6rem 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.roofing-service-detail .about-text h2 {
  color: var(--white);
}

.roofing-service-detail .about-text h2 span {
  color: var(--brand-400);
}

.roofing-service-detail .about-text p {
  color: var(--white);
}

.roofing-service-detail-alt {
  background: var(--white);
}

.roofing-service-detail-alt .about-text h2 {
  color: var(--slate-900);
}

.roofing-service-detail-alt .about-text h2 span {
  color: var(--brand-500);
}

.roofing-service-detail-alt .about-text p {
  color: var(--slate-600);
}

.roofing-service-detail-alt .about-feature {
  border-left-color: var(--brand-500);
  background: var(--slate-50);
}

.roofing-service-detail-alt .about-feature svg {
  color: var(--brand-500);
}

.roofing-service-detail-alt .about-feature span {
  color: var(--slate-700);
}

.roofing-content-reversed {
  direction: ltr;
}

@media (min-width: 1024px) {
  .roofing-content-reversed {
    direction: rtl;
  }

  .roofing-content-reversed > * {
    direction: ltr;
  }
}

/* ===== SHINGLE SHOWCASE ===== */
.shingle-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.shingle-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.shingle-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .shingle-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .shingle-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shingle-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  transition: all 0.4s ease;
}

.shingle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.shingle-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

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

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

.shingle-card-content {
  padding: 1.75rem 2rem;
}

.shingle-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.shingle-card-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== EAVESTROUGH OVERVIEW SECTION ===== */
.eavestrough-overview {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.eavestrough-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.eavestrough-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .eavestrough-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eavestrough-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eavestrough-service-card {
  position: relative;
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eavestrough-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.eavestrough-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.eavestrough-service-card:hover::before {
  transform: scaleX(1);
}

.eavestrough-service-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.eavestrough-service-card:hover .eavestrough-service-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.eavestrough-service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.eavestrough-service-card:hover .eavestrough-service-icon svg {
  color: var(--white);
}

.eavestrough-service-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.eavestrough-service-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== EAVESTROUGH WHY US SECTION ===== */
.eavestrough-why-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.eavestrough-why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.eavestrough-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .eavestrough-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eavestrough-reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eavestrough-reason-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.eavestrough-reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.eavestrough-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.eavestrough-reason-card:hover::after {
  transform: scaleX(1);
}

.eavestrough-reason-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--brand-500);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.eavestrough-reason-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.eavestrough-reason-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SOFFIT & FASCIA OVERVIEW SECTION ===== */
.soffit-fascia-overview {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.soffit-fascia-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.soffit-fascia-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .soffit-fascia-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .soffit-fascia-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.soffit-fascia-service-card {
  position: relative;
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.soffit-fascia-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.soffit-fascia-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.soffit-fascia-service-card:hover::before {
  transform: scaleX(1);
}

.soffit-fascia-service-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.soffit-fascia-service-card:hover .soffit-fascia-service-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.soffit-fascia-service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.soffit-fascia-service-card:hover .soffit-fascia-service-icon svg {
  color: var(--white);
}

.soffit-fascia-service-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.soffit-fascia-service-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SOFFIT & FASCIA WHY US SECTION ===== */
.soffit-fascia-why-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.soffit-fascia-why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.soffit-fascia-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .soffit-fascia-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .soffit-fascia-reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.soffit-fascia-reason-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.soffit-fascia-reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.soffit-fascia-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.soffit-fascia-reason-card:hover::after {
  transform: scaleX(1);
}

.soffit-fascia-reason-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--brand-500);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.soffit-fascia-reason-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.soffit-fascia-reason-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SIDING & CLADDING OVERVIEW SECTION ===== */
.siding-overview {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.siding-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.siding-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .siding-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .siding-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.siding-service-card {
  position: relative;
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.siding-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.siding-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.siding-service-card:hover::before {
  transform: scaleX(1);
}

.siding-service-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.siding-service-card:hover .siding-service-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.siding-service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.siding-service-card:hover .siding-service-icon svg {
  color: var(--white);
}

.siding-service-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.siding-service-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SIDING & CLADDING WHY US SECTION ===== */
.siding-why-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.siding-why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.siding-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .siding-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .siding-reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.siding-reason-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.siding-reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.siding-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.siding-reason-card:hover::after {
  transform: scaleX(1);
}

.siding-reason-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--brand-500);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.siding-reason-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.siding-reason-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SNOW REMOVAL OVERVIEW SECTION ===== */
.snow-overview {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.snow-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.snow-risks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .snow-risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .snow-risks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .snow-risks-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.snow-risk-card {
  position: relative;
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.snow-risk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.snow-risk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

.snow-risk-card:hover::before {
  transform: scaleX(1);
}

.snow-risk-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
}

.snow-risk-card:hover .snow-risk-icon {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  transform: scale(1.1);
}

.snow-risk-icon svg {
  width: 32px;
  height: 32px;
  color: var(--slate-700);
  transition: color 0.4s ease;
}

.snow-risk-card:hover .snow-risk-icon svg {
  color: var(--white);
}

.snow-risk-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.snow-risk-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== SNOW REMOVAL WHY US SECTION ===== */
.snow-why-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  position: relative;
}

.snow-why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--slate-100), transparent);
  pointer-events: none;
}

.snow-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .snow-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .snow-reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.snow-reason-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.snow-reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.snow-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.snow-reason-card:hover::after {
  transform: scaleX(1);
}

.snow-reason-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--brand-500);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.snow-reason-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.snow-reason-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ===== PROJECTS PAGE ===== */
.projects-intro {
  padding: 6rem 0 2rem;
  background: var(--white);
  position: relative;
}

.projects-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

/* Project Section Shared */
.project-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.project-section-dark {
  background: var(--slate-900);
}

.project-section-light {
  background: var(--white);
}

.project-section-header {
  margin-bottom: 3rem;
}

.project-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.project-section-dark .project-section-label {
  background: rgba(33, 121, 187, 0.15);
  border: 1px solid rgba(33, 121, 187, 0.3);
  padding: 0.5rem 1.25rem;
}

.project-section-light .project-section-label {
  background: var(--brand-light);
  border: 1px solid rgba(33, 121, 187, 0.2);
  padding: 0.5rem 1.25rem;
}

.project-section-label svg {
  width: 20px;
  height: 20px;
}

.project-section-dark .project-section-label svg {
  color: var(--brand-400);
}

.project-section-light .project-section-label svg {
  color: var(--brand-600);
}

.project-section-label span {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-section-dark .project-section-label span {
  color: var(--brand-400);
}

.project-section-light .project-section-label span {
  color: var(--brand-600);
}

.project-section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.project-section-dark .project-section-title {
  color: var(--white);
}

.project-section-light .project-section-title {
  color: var(--slate-900);
}

.project-section-desc {
  font-size: 1.05rem;
  max-width: 700px;
}

.project-section-dark .project-section-desc {
  color: var(--slate-400);
}

.project-section-light .project-section-desc {
  color: var(--slate-600);
}

/* Project Gallery Grid */
.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-gallery-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-gallery-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate-800);
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.project-section-dark .project-gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-section-light .project-gallery-item {
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
}

/* ===== REVIEWS PAGE ===== */
.reviews-main {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.reviews-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

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

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-card-featured .testimonial-text {
  -webkit-line-clamp: unset;
  display: block;
}

.reviews-text-full {
  -webkit-line-clamp: unset !important;
}

/* Reviews External Section */
.reviews-external {
  padding: 6rem 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.reviews-external-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.reviews-external-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.reviews-external-title span {
  color: var(--brand-400);
}

.reviews-external-desc {
  font-size: 1.125rem;
  color: var(--slate-400);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reviews-platforms {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-platform-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-platform-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(33, 121, 187, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reviews-platform-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.reviews-platform-card:hover .reviews-platform-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(33, 121, 187, 0.35);
}

.reviews-platform-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.reviews-platform-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.reviews-platform-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-400);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.reviews-platform-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.reviews-platform-card:hover .reviews-platform-link svg {
  transform: translateX(4px);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--slate-800);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--slate-300);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(33, 121, 187, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

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

/* ===== CONTACT MAP FULL WIDTH ===== */
.contact-map-section {
  background: var(--slate-100);
}

.contact-map-full {
  width: 100%;
  height: 400px;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FREE ESTIMATE FORM ===== */
.estimate-form-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.estimate-form-section--standalone {
  padding-top: 10rem;
}

.estimate-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--slate-50);
  padding: 2.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

@media (min-width: 640px) {
  .form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 0.75rem;
  display: block;
}

.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--slate-300);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(33, 121, 187, 0.1);
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-300);
  transition: all 0.2s ease;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.form-checkbox:hover {
  border-color: var(--brand-400);
  background: var(--brand-light);
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--brand-500);
  width: 18px;
  height: 18px;
}

/* ===== CAREERS PAGE ===== */
.careers-why {
  padding: 5rem 0;
  background: var(--white);
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.careers-benefit-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.careers-benefit-card:hover {
  border-color: var(--brand-400);
  box-shadow: 0 8px 30px rgba(33, 121, 187, 0.1);
  transform: translateY(-2px);
}

.careers-benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.careers-benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-500);
}

.careers-benefit-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--slate-900);
}

.careers-benefit-card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.careers-positions {
  padding: 5rem 0;
  background: var(--slate-50);
}

.careers-positions-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.careers-position-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 2.5rem;
}

.careers-position-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.careers-position-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--slate-900);
}

.careers-position-type {
  background: var(--brand-light);
  color: var(--brand-600);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.careers-position-description {
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.careers-position-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.careers-position-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.careers-position-detail svg {
  width: 18px;
  height: 18px;
  color: var(--brand-500);
  flex-shrink: 0;
}

.careers-position-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--slate-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.careers-position-card ul {
  list-style: none;
  padding: 0;
}

.careers-position-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.careers-position-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-500);
  border-radius: 50%;
}

.careers-apply {
  padding: 5rem 0;
  background: var(--slate-900);
  color: var(--white);
}

.careers-apply-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.careers-apply-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.careers-apply-content > p {
  font-size: 1.1rem;
  color: var(--slate-400);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.careers-apply-methods {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.careers-apply-note {
  font-size: 0.9rem;
  color: var(--slate-400);
}

.careers-apply-note a {
  color: var(--brand-400);
  text-decoration: none;
}

.careers-apply-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .careers-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .careers-position-card {
    padding: 1.5rem;
  }

  .careers-position-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .careers-apply-content h2 {
    font-size: 1.8rem;
  }

  .careers-apply-methods {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .careers-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== LEGAL / PRIVACY POLICY ===== */
.legal-content {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--slate-500);
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--slate-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body p {
  font-size: 1rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.legal-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--brand-500);
  border-radius: 50%;
}

.legal-contact {
  margin-top: 1rem;
}

.legal-contact li {
  margin-bottom: 0.5rem;
}

.legal-body a {
  color: var(--brand-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-body a:hover {
  color: var(--brand-700);
}

/* ===== FAQ ===== */
.faq-content {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.faq-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400), var(--brand-600), var(--slate-700));
}

.faq-category {
  max-width: 840px;
  margin: 0 auto 3rem;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--slate-200);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-item:first-child {
  border-top: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--slate-800);
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--brand-500);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-500);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--brand-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--brand-700);
}

@media (max-width: 768px) {
  .faq-content {
    padding: 4rem 0;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1rem 0;
  }

  .faq-category {
    margin-bottom: 2rem;
  }
}

/* ===== SERVICE DEPARTMENT ===== */
.service-condensation {
  padding: 6rem 0;
  background: var(--slate-50);
}

.service-causes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-cause-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cause-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.service-cause-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--brand-500);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.service-cause-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.service-cause-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.service-list {
  padding: 6rem 0;
  background: var(--white);
}

.service-offerings-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
}

.service-offering-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.service-offering-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-500);
  margin-top: 2px;
}

.service-offering-item span {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .service-causes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-condensation {
    padding: 4rem 0;
  }

  .service-causes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-list {
    padding: 4rem 0;
  }

  .service-offerings-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
