/* ========================================
   PESTCONTROL BYDGOSZCZ - Main Stylesheet
   Palette: Charcoal Grey + Burnt Orange
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --orange:        #E8621A;
  --orange-dark:   #C0501A;
  --orange-light:  #F5874A;
  --grey-900:      #1A1A1A;
  --grey-800:      #252525;
  --grey-700:      #3A3A3A;
  --grey-600:      #555555;
  --grey-400:      #888888;
  --grey-200:      #D4D4D4;
  --grey-100:      #F0F0F0;
  --white:         #FFFFFF;
  --shadow:        0 4px 24px rgba(0,0,0,0.18);
  --radius:        6px;
  --transition:    0.3s ease;
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--grey-900);
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

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

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--grey-900);
  color: var(--grey-200);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--orange-light); font-weight: 600; }
.topbar a:hover { color: var(--white); }
.topbar-phone {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}
.topbar-phone::before { content: "📞 "; }

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--grey-800);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--orange-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-text span { font-size: 0.75rem; color: var(--grey-400); letter-spacing: 2px; text-transform: uppercase; }

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li { position: relative; }

nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--grey-200);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--orange);
  color: var(--white);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px; /* invisible bridge – mouse won't escape */
  background: transparent;
  z-index: 200;
}
.dropdown-menu::before {
  content: '';
  display: block;
  height: 6px; /* covers the gap */
}
.dropdown-menu-inner {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  border-top: 2px solid var(--orange);
  min-width: 240px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  animation: dropIn 0.2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu-inner li a {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 0;
  border-bottom: 1px solid var(--grey-700);
}
.dropdown-menu-inner li:last-child a { border-bottom: none; }

/* CTA Button in Nav */
.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--orange-dark) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeIn 0.25s ease;
}
.mobile-nav.open { display: flex; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
}
.mobile-nav a:hover { background: var(--orange); color: var(--white); }
.mobile-nav .mobile-phone {
  margin-top: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--orange-light);
  font-weight: 700;
  letter-spacing: 2px;
}
.mobile-nav hr { width: 60px; border: 1px solid var(--grey-600); margin: 10px 0; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== HERO SLIDER ===== */
.slider {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--grey-900);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
  filter: brightness(0.75);
}
.slide.active .slide-bg { transform: scale(1); }

/* Slide backgrounds – SVG illustrations */
.slide-1 .slide-bg { background-image: url('../images/slide1-szerszenie.svg'); background-size: cover; background-position: center; }
.slide-2 .slide-bg { background-image: url('../images/slide2-deratyzacja.svg'); background-size: cover; background-position: center; }
.slide-3 .slide-bg { background-image: url('../images/slide3-dezynsekcja.svg'); background-size: cover; background-position: center; }

/* Decorative icons on slides */
.slide-decoration {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.08;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 0 40px;
}
.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.slide-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.slide-content h1 span { color: var(--orange-light); }
.slide-content p {
  font-size: 1.1rem;
  color: var(--grey-200);
  margin-bottom: 28px;
  max-width: 500px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,98,26,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); margin-left: 12px; }
.btn-outline:hover { background: var(--white); color: var(--grey-900); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: var(--orange); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232,98,26,0.8);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== PHONE BANNER ===== */
.phone-banner {
  background: var(--orange);
  padding: 18px 0;
  text-align: center;
}
.phone-banner p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.phone-banner a {
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-top: 4px;
}
.phone-banner a:hover { color: var(--grey-100); }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title p {
  color: var(--grey-600);
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,26,0.1);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
/* SVG fallback icon for dezynsekcja – renders on all browsers/systems */
.service-icon-bug {
  display: block;
  margin: 0 auto 16px;
  width: 54px;
  height: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3C!-- body --%3E%3Cellipse cx='32' cy='36' rx='13' ry='17' fill='%23333'/%3E%3C!-- head --%3E%3Ccircle cx='32' cy='18' r='9' fill='%23333'/%3E%3C!-- antennae --%3E%3Cline x1='27' y1='11' x2='18' y2='4' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='37' y1='11' x2='46' y2='4' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='4' r='2.5' fill='%23333'/%3E%3Ccircle cx='46' cy='4' r='2.5' fill='%23333'/%3E%3C!-- eyes --%3E%3Ccircle cx='28' cy='17' r='2.5' fill='%23e8621a'/%3E%3Ccircle cx='36' cy='17' r='2.5' fill='%23e8621a'/%3E%3C!-- legs left --%3E%3Cline x1='19' y1='28' x2='8' y2='24' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='19' y1='36' x2='6' y2='35' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='19' y1='44' x2='8' y2='50' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3C!-- legs right --%3E%3Cline x1='45' y1='28' x2='56' y2='24' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='45' y1='36' x2='58' y2='35' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='45' y1='44' x2='56' y2='50' stroke='%23333' stroke-width='2.5' stroke-linecap='round'/%3E%3C!-- wing shimmer --%3E%3Cellipse cx='32' cy='35' rx='10' ry='14' fill='%23555' fill-opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--grey-900);
}
.service-card p { color: var(--grey-600); font-size: 0.95rem; margin-bottom: 18px; }
.service-card .btn-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.service-card .btn-sm:hover { background: var(--orange-dark); }

/* ===== WHY US ===== */
.why-us { background: var(--grey-900); color: var(--white); }
.why-us .section-title h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.why-item h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.why-item p { color: var(--grey-400); font-size: 0.9rem; }

/* ===== AREAS / DZIELNICE ===== */
.areas { background: var(--grey-100); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.area-tag {
  display: block;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--orange);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--grey-700);
  letter-spacing: 0.5px;
  text-align: center;
  transition: all var(--transition);
}
.area-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }

/* ===== STATS ===== */
.stats { background: var(--orange); padding: 50px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.stat-item p { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--grey-100);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  border-top: 3px solid var(--orange);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: var(--grey-700); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.reviewer { font-weight: 600; color: var(--grey-900); font-size: 0.9rem; }
.reviewer span { color: var(--grey-400); font-weight: 400; }

/* ===== FAQ ===== */
.faq { background: var(--grey-100); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}
.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--grey-900);
  letter-spacing: 0.3px;
  user-select: none;
}
.faq-q:hover { background: var(--grey-100); }
.faq-q.open { background: var(--orange); color: var(--white); }
.faq-arrow { font-size: 0.8rem; transition: transform 0.3s; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 16px 24px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d1a0e 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-section h2 span { color: var(--orange-light); }
.cta-section p { color: var(--grey-400); font-size: 1.05rem; margin-bottom: 30px; }
.cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--orange-light);
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-phone-big {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--orange-light);
  font-weight: 700;
  letter-spacing: 2px;
}
footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul li a { color: var(--grey-400); font-size: 0.9rem; transition: all var(--transition); }
footer ul li a::before { content: "→ "; color: var(--orange); font-size: 0.7rem; }
footer ul li a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--grey-700);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
}

/* ===== STICKY PHONE ===== */
.sticky-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sticky-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(232,98,26,0.5);
  animation: pulse 2.5s infinite;
  text-decoration: none;
  transition: all var(--transition);
}
.sticky-phone-btn:hover { background: var(--orange-dark); color: var(--white); transform: scale(1.05); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,98,26,0.5); }
  50% { box-shadow: 0 4px 30px rgba(232,98,26,0.8); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--grey-900) 0%, #2d1a0e 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--orange);
  opacity: 0.05;
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero p { color: var(--grey-400); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--grey-400);
}
.breadcrumb a { color: var(--orange-light); }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.content-text h2 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: 16px; }
.content-text h3 { font-size: 1.2rem; color: var(--orange); margin: 24px 0 10px; }
.content-text p { color: var(--grey-600); margin-bottom: 14px; line-height: 1.8; }
.content-text ul { list-style: none; margin-bottom: 20px; }
.content-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--grey-600);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.sidebar-card {
  background: var(--grey-900);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-card .big-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--orange-light);
  display: block;
  margin: 12px 0;
  letter-spacing: 2px;
}
.sidebar-card p { font-size: 0.9rem; color: var(--grey-400); margin-bottom: 14px; }
.sidebar-card .btn-primary { width: 100%; text-align: center; display: block; padding: 12px; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--grey-700); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--grey-800);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { height: 130px; resize: vertical; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .slider { height: 420px; }
  .slide-content { padding: 0 20px; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-decoration { font-size: 7rem; opacity: 0.05; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }

  .slider-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .sticky-phone-btn span.phone-label { display: none; }
}

@media (max-width: 480px) {
  .slider { height: 360px; }
  .btn-outline { display: none; }
  section { padding: 50px 0; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== UTILITY ===== */
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-30 { margin-bottom: 30px; }
.hidden { display: none; }
