.breadcrumb-section { background: var(--light); padding: 100px 0 20px; border-bottom: 1px solid var(--border); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0; font-size: 0.9rem; }
.breadcrumb li { display: flex; align-items: center; color: var(--text-light); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin: 0 10px; color: #cbd5e1; }
.breadcrumb a { color: var(--text-dark); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child { color: var(--accent); font-weight: 700; }
.content-layout { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; padding: 40px 0 80px; }
.sidebar-wrapper { display: flex; flex-direction: column; gap: 25px; }
.sidebar-box { background: white; padding: 30px; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.sidebar-box h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--primary); padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; display: flex; align-items: center; gap: 10px; }
.sidebar-box h3 svg { width: 28px; height: 28px; color: var(--accent); margin-right: 10px; }
.side-menu li { list-style: none; margin-bottom: 10px; }
.side-menu a { display: flex; justify-content: space-between; padding: 12px 15px; background: #f8fafc; border-radius: 6px; font-weight: 600; font-size: 0.95rem; color: var(--text-dark); transition: 0.2s; }
.side-menu a:hover { background: var(--accent); color: white; }
.contact-btn { display: flex; justify-content: center; width: 100%; padding: 15px; background: var(--accent); color: white; font-weight: 700; border-radius: 6px; margin-top: 15px; transition: 0.3s; text-align: center; }
.contact-btn:hover { background-color: #b71c1c; transform: translateY(-3px); }
.work-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.9rem; }
.page-hero-img { width: 100%; max-height: 450px; object-fit: cover; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 15px 40px -10px rgba(0,0,0,0.15); }
main h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; color: var(--primary); line-height: 1.2; }
main h2 { font-size: 1.8rem; margin: 40px 0 20px; border-left: 5px solid var(--accent); padding: 10px 15px; background: #f8fafc; color: var(--primary); }
main p { margin-bottom: 15px; text-align: justify; color: #334155; }
.feature-list { list-style: none; padding: 0; margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature-list li { background: white; border: 1px solid var(--border); padding: 18px; border-radius: 8px; display: flex; align-items: center; gap: 15px; font-weight: 600; color: var(--text-dark); transition: 0.3s; }
.feature-list li:hover { border-color: var(--accent); transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-list svg, .tech-list li::before { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; background: rgba(214,48,49,0.1); padding: 6px; border-radius: 50%; }
.tech-list li::before { content: '✓'; font-size: 1rem; margin-right: 8px; background: none; width: auto; height: auto; padding: 0; }
.technical-box { background: #1e293b; color: white; padding: 30px; border-radius: 12px; margin: 30px 0; }
.technical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.tech-item span { display: block; font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; }
.tech-item strong { display: block; font-size: 1.1rem; color: var(--accent); }
.alert-box { background: #fff1f2; border: 1px solid #fecdd3; padding: 25px; margin: 30px 0; border-radius: 8px; }
.alert-box h3 { color: #9f1239; margin-bottom: 10px; font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
.zigzag-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.zigzag-row:nth-child(even) { flex-direction: row-reverse; }
.zigzag-img { flex: 1; }
.zigzag-img img { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.zigzag-content { flex: 1; }
.zigzag-content h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin-top: 10px; }
.city-tag { background: white; border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; color: var(--text-light); font-weight: 500; display: inline-block; transition: 0.3s; cursor: default; }
.city-tag:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 991px) {
    .content-layout { grid-template-columns: 1fr; gap: 30px; }
    .sidebar-wrapper { order: 2; }
    .main-content { order: 1; }
    .feature-list, .technical-grid, .zigzag-row, .zigzag-row:nth-child(even) { grid-template-columns: 1fr; flex-direction: column; }
    .zigzag-img img { height: 250px; }
}