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

:root {
  --navy: #1a2744;
  --navy-dark: #111b33;
  --navy-light: #243260;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fcd34d;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1f2937;
  --text-light: #6b7280;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  min-height: 52px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  min-height: 58px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.header-phone-icon {
  font-size: 1rem;
}
.header-phone:hover {
  color: var(--gold-light);
}

.main-nav {
  display: none;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .main-nav a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
  }
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--gold);
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
  color: var(--white);
  padding: 4rem 1.25rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold-light);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--gold-light);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.hero-trust-item .check {
  color: var(--gold);
  font-size: .9rem;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-price-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem .85rem;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  font-size: .9rem;
}
.hero-price-item .price {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  margin-left: .5rem;
}

.hero-card-cta {
  font-size: .82rem;
  text-align: center;
  color: rgba(255,255,255,.6);
  margin-top: 1rem;
}

/* ===== USP BAR ===== */
.usp-bar {
  background: var(--gold);
  padding: 1.5rem 1.25rem;
}

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

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

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  color: var(--navy-dark);
}

.usp-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.usp-label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.usp-desc {
  font-size: .72rem;
  opacity: .75;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1.25rem;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}

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

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-header h2 {
  color: var(--navy-dark);
  margin-bottom: .6rem;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,.65);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

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

.service-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
}

.service-card h3 {
  color: var(--navy-dark);
  font-size: 1.05rem;
}

.service-card p {
  font-size: .87rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: .5rem;
}

.service-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.service-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s;
}

.service-card-link:hover {
  gap: .5rem;
  color: var(--gold-dark);
}

/* ===== PRICING TABLE ===== */
.pricing-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead tr {
  background: var(--navy-dark);
  color: var(--white);
}

.pricing-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pricing-table thead th:last-child {
  text-align: right;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--gray-50);
}

.pricing-table td {
  padding: .9rem 1.25rem;
  font-size: .92rem;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--navy-dark);
  white-space: nowrap;
}

.pricing-table .surcharge-row td {
  background: #fffbeb;
  color: var(--gold-dark);
  font-style: italic;
  font-size: .85rem;
}

.pricing-table .surcharge-row td:last-child {
  color: var(--gold-dark);
}

.pricing-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--text-light);
}

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.area-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transition: all .2s;
  cursor: pointer;
}

.area-card:hover {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.4);
  transform: translateY(-2px);
}

.area-card-number {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.area-card-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.area-card-districts {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: .97rem;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background .15s;
  list-style: none;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(245,158,11,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .15rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.contact-info-value a {
  color: var(--navy-dark);
  transition: color .2s;
}
.contact-info-value a:hover {
  color: var(--gold-dark);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-pin {
  font-size: 3rem;
  line-height: 1;
}

.map-placeholder p {
  font-size: .9rem;
  position: relative;
}

.map-placeholder strong {
  color: var(--gold);
  display: block;
  font-size: 1rem;
  margin-bottom: .25rem;
}

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: .45rem 1rem .45rem .6rem;
  font-size: .85rem;
  box-shadow: var(--shadow);
}

.rating-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: -.1em;
}

.rating-val {
  font-weight: 800;
  color: var(--navy-dark);
}

.rating-count {
  color: var(--text-light);
  font-size: .78rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer-brand .logo-main {
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.65;
}

.footer-brand p a {
  color: var(--gold);
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer-links a {
  font-size: .85rem;
  transition: color .2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

/* ===== STICKY PHONE (MOBILE) ===== */
.sticky-phone {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  gap: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

@media (min-width: 768px) {
  .sticky-phone { display: none; }
}

.sticky-phone a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 800;
  min-height: 60px;
}

.sticky-phone .sticky-call {
  background: var(--gold);
  color: var(--navy-dark);
}

.sticky-phone .sticky-wa {
  background: #25d366;
  color: var(--white);
}

/* ===== SERVICE PAGE ===== */
.service-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
}

.service-hero h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.service-hero .subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

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

.breadcrumb-sep { color: rgba(255,255,255,.3); }

.content-block {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

.content-block h2 {
  color: var(--navy-dark);
  margin: 2rem 0 .75rem;
}

.content-block h3 {
  color: var(--navy-dark);
  margin: 1.5rem 0 .5rem;
}

.content-block ul {
  margin: .75rem 0 1rem 1.25rem;
  list-style: disc;
  color: var(--text-light);
}

.content-block ul li {
  margin-bottom: .35rem;
  font-size: .93rem;
}

.info-box {
  background: #eff6ff;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box p {
  font-size: .9rem;
  color: var(--navy-dark);
  margin-bottom: .25rem;
}

.warn-box {
  background: #fffbeb;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.warn-box p {
  font-size: .9rem;
  color: #92400e;
  margin-bottom: .25rem;
}

/* ===== AREA PAGE ===== */
.area-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
}

.area-hero h1 { color: var(--white); margin-bottom: .75rem; }
.area-hero .subtitle { color: rgba(255,255,255,.75); font-size: 1.05rem; }

/* ===== INLINE PHONE CTA ===== */
.cta-box {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: .5rem;
}

.cta-box p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.cta-phone-big {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 1rem;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy-dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-body h4 {
  color: var(--navy-dark);
  margin-bottom: .25rem;
}

.step-body p {
  font-size: .88rem;
  color: var(--text-light);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy-dark); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== MOBILE PADDING FIX ===== */
@media (max-width: 767px) {
  .section { padding: 3rem 1.25rem; }
  body { padding-bottom: 60px; }
}

/* ===== PRINT ===== */
@media print {
  .sticky-phone, .site-header { display: none; }
}

/* ===== IMAGES ===== */
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 767px) {
  .hero-img { height: 260px; border-radius: var(--radius); }
}

.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -1.75rem -1.5rem 1rem;
  width: calc(100% + 3rem);
}

.service-card-img-wrap {
  margin: -1.75rem -1.5rem 1rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.04);
}

/* Oblast photo section */
.oblast-section {
  padding: 4rem 1.25rem;
  background: var(--gray-50);
}

.oblast-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
}

.oblast-inner .oblast-photo {
  flex: 0 0 50%;
  width: 50%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
}

.oblast-inner .oblast-text {
  flex: 1 1 0;
  min-width: 0;
}

.oblast-text h2 {
  color: var(--navy-dark);
  margin-bottom: .75rem;
}

.oblast-text p {
  color: var(--text-light);
  font-size: .97rem;
}

@media (max-width: 767px) {
  .oblast-inner {
    flex-direction: column;
  }
  .oblast-inner .oblast-photo {
    flex: none;
    width: 100%;
    height: 220px;
  }
}

/* Service hero with image */
.service-hero-with-img {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
}

.service-hero-with-img .service-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-hero-with-img .service-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.service-hero-with-img h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.service-hero-with-img .subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 600px;
}

.service-hero-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
  opacity: .9;
}

@media (max-width: 767px) {
  .service-hero-photo { height: 200px; }
}
