:root {
  --yellow: #F9C520;
  --orange: #E87010;
  --green: #2E7A28;
  --green-light: #4AAF46;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2a2a2a;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --gray: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 32px; }
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 56px; width: auto; display: block; }
nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--yellow); }
.btn-nav {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
  padding: 8px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--white); color: var(--dark) !important; }

.page-header {
  margin-top: 70px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 100px 60px 80px;
  text-align: center;
  border-bottom: 4px solid var(--green);
}
.page-header .breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--yellow); text-decoration: none; }
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-content { max-width: 1100px; margin: 0 auto; padding: 80px 60px; }
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  border-left: 4px solid var(--green);
  padding-left: 16px;
}
.content-section p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 18px; }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #eee;
  position: relative;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 24px; height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.feature-list strong {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.sidebar-card {
  background: var(--dark);
  color: var(--white);
  padding: 36px 32px;
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  position: sticky;
  top: 90px;
}
.sidebar-card .label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sidebar-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.sidebar-card .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-card .phone:hover { color: var(--yellow); }
.btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-cta:hover { background: #c85e08; }

.other-services { background: var(--light-bg); padding: 80px 60px; }
.other-services-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.other-services .label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.other-services h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 40px;
}
.other-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.other-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: left;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 4px solid var(--green);
}
.other-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.other-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.other-card p { font-size: 14px; color: #555; line-height: 1.6; }
.other-card .arrow {
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
}

footer {
  background: #0a0a0a;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 44px; width: auto; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-left { gap: 16px; }
  .page-header { padding: 70px 24px 60px; }
  .page-header h1 { font-size: 44px; }
  .page-content { padding: 50px 24px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-card { position: static; }
  .other-services { padding: 60px 24px; }
  .other-grid { grid-template-columns: 1fr; }
}
