/* ========================================
   ВывозМеталла-СПб.рф - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #FFC000;
    --color-primary-hover: #E0A800;
    --color-text-main: #333333;
    --color-text-dark: #1A1A1A;
    --color-bg-light: #F7F7F7;
    --color-white: #FFFFFF;
    --color-border: #E0E0E0;
    --color-whatsapp: #25D366;
    --color-error: #D32F2F;

    --font-family-heading: 'Montserrat', sans-serif;
    --font-family-body: 'Open Sans', sans-serif;

    --section-padding: 80px;
    --container-width: 1200px;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-white);
    padding-top: var(--header-height);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text-dark);
}

.btn-outline:hover {
    background-color: var(--color-primary);
}

.btn-dark {
    background-color: var(--color-text-dark);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: #333;
}

.btn-block {
    width: 100%;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
}

.section-light {
    background-color: var(--color-bg-light);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: -30px auto 50px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}

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

.nav-link:not(.nav-dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.nav-link:not(.nav-dropdown-toggle):hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 10px 0;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    text-align: right;
}

.header-phone a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.header-phone a:hover {
    color: var(--color-primary);
}

.header-phone span {
    font-size: 12px;
    color: #666;
}

/* Mobile Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-dark);
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-phone {
    margin-top: 30px;
    text-align: center;
}

.mobile-menu-phone a {
    font-size: 24px;
    color: var(--color-primary);
    border: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--color-white);
}

.hero-text h1 {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
}

.hero-feature img {
    width: 30px;
    height: 30px;
}

.hero-feature span {
    font-weight: 600;
    font-size: 14px;
}

/* Hero Form */
.hero-form {
    background: var(--color-primary);
    padding: 40px;
}

.hero-form h3 {
    color: var(--color-text-dark);
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
}

.hero-form p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    font-family: var(--font-family-body);
    font-size: 16px;
}

.hero-form textarea {
    min-height: 80px;
    resize: vertical;
}

.hero-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-card .btn {
    padding: 12px 25px;
}

/* ========================================
   PRICES SECTION
   ======================================== */
.prices-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.prices-table th,
.prices-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.prices-table th {
    background: var(--color-text-dark);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.prices-table tbody tr {
    transition: background 0.3s;
}

.prices-table tbody tr:hover {
    background: var(--color-bg-light);
}

.prices-table .price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 18px;
}

.prices-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.prices-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 45px;
    height: 45px;
}

.advantage-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   FLEET SECTION
   ======================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fleet-card {
    background: var(--color-white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    max-height: 100px;
    margin: 0 auto 20px;
}

.fleet-card h4 {
    margin-bottom: 0;
    font-size: 18px;
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--color-primary);
}

.step-item {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    font-family: var(--font-family-heading);
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   CONTACTS SECTION
   ======================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-dark);
}

.contact-item-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.contact-item-content a,
.contact-item-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
}

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

.map-container {
    height: 400px;
    background: var(--color-bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-text-dark);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.7;
}

.footer h4 {
    color: var(--color-primary);
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    padding: 8px 0;
    opacity: 0.7;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contacts p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contacts a {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-contacts a:hover {
    text-decoration: underline;
}

.footer-map {
    height: 200px;
    background: #333;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.footer-map:hover iframe {
    filter: grayscale(0%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.6;
}

.footer-requisites {
    font-size: 12px;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-primary-hover);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-dark);
}

/* ========================================
   GALLERY / LIGHTBOX
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--color-primary);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    font-family: var(--font-family-body);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-control.error {
    border-color: var(--color-error);
}

.error-message {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 5px;
}

.form-message {
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.form-message-success {
    background: #4CAF50;
    color: white;
}

.form-message-error {
    background: var(--color-error);
    color: white;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* ========================================
   PAGE HERO (Inner pages)
   ======================================== */
.page-hero {
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 15px;
    font-size: 42px;
}

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

.page-hero p {
    color: var(--color-white);
    opacity: 0.9;
    font-size: 18px;
    max-width: 600px;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 10px;
    opacity: 0.5;
}

/* Legal Table (O kompanii page) */
.legal-table-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--color-border);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table td:first-child {
    width: 40%;
    background: var(--color-bg-light);
}

.legal-table td:last-child {
    font-weight: 500;
}

/* Text Content Block */
.text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CONTENT SECTIONS (Inner pages)
   ======================================== */
.content-section {
    padding: 60px 0;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-image img {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.check-list {
    columns: 2;
    column-gap: 30px;
}

.check-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    break-inside: avoid;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 9px;
    width: 6px;
    height: 4px;
    border: solid var(--color-text-dark);
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    padding: 60px;
}

.cta-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.cta-section > .container > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 15px;
}

.cta-form input {
    padding: 18px;
    border: none;
    font-size: 16px;
}

.cta-form .btn {
    white-space: nowrap;
}

/* Other Services */
.other-services-section {
    background: var(--color-bg-light);
}

.other-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background: var(--color-white);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--color-text-dark);
}

.type-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.type-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   MATERIALS GRID (Check-list style)
   ======================================== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--color-white);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.material-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.material-check {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.material-check svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text-dark);
}

.material-item span {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
}

/* ========================================
   CONDITIONS TABLE
   ======================================== */
.conditions-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.conditions-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.conditions-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--color-border);
}

.conditions-table td:first-child {
    width: 35%;
    background: var(--color-bg-light);
}

.conditions-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   CONTENT BLOCK
   ======================================== */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   SERVICES GRID 3 COLUMNS
   ======================================== */
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ========================================
   FEATURES GRID (Cable types, etc.)
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 25px;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Cable Types List */
.cable-types-list {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cable-types-list h3 {
    margin-bottom: 25px;
}

.cable-types-list .check-list {
    columns: 3;
}

/* ========================================
   CONDITION GRID
   ======================================== */
.condition-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s;
}

.condition-item:hover {
    transform: translateX(5px);
}

.condition-icon {
    color: var(--color-primary);
}

.condition-item span {
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   TWO COLUMNS LAYOUT
   ======================================== */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-text h2.text-left {
    text-align: left;
}

.column-text h4 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.column-text .check-list {
    columns: 1;
    margin-bottom: 20px;
}

.column-text .btn {
    margin-top: 20px;
}

.column-image img {
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ========================================
   TEXT CONTENT
   ======================================== */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Price table highlight row */
.prices-table tbody tr.highlight,
.prices-table tbody tr.highlight-row {
    background: rgba(255, 192, 0, 0.1);
}

.prices-table tbody tr.highlight td,
.prices-table tbody tr.highlight-row td {
    font-weight: 600;
}

.prices-table tbody tr.highlight .price,
.prices-table tbody tr.highlight-row .price {
    font-size: 20px;
}

/* ========================================
   VEHICLES GRID
   ======================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vehicle-card {
    background: var(--color-white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-icon svg {
    color: var(--color-text-dark);
}

.vehicle-card h4 {
    font-size: 16px;
    margin-bottom: 0;
}

/* ========================================
   PROCESS GRID
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--color-white);
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.process-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    font-family: var(--font-family-heading);
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-card ul {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.process-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.process-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--color-bg-light);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-box img {
    width: 40px;
    height: 40px;
}

.feature-box span {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
}

/* CTA Section with subtitle */
.cta-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid,
    .advantages-grid,
    .other-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cable-types-list .check-list {
        columns: 2;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
        --header-height: 70px;
    }

    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    .section-title { font-size: 28px; margin-bottom: 30px; }

    .nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-contacts .btn {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-feature {
        justify-content: center;
    }

    .services-grid,
    .advantages-grid,
    .gallery-grid,
    .other-services {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .steps-container::before {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .contacts-grid,
    .content-with-image {
        grid-template-columns: 1fr;
    }

    .content-with-image.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-form {
        grid-template-columns: 1fr;
    }

    .check-list {
        columns: 1;
    }

    .prices-table th,
    .prices-table td {
        padding: 15px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .page-hero {
        padding: 50px 0 40px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .conditions-table td {
        padding: 15px;
        display: block;
        width: 100%;
    }

    .conditions-table td:first-child {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .condition-grid {
        flex-direction: column;
    }

    .condition-item {
        width: 100%;
    }

    .cable-types-list {
        padding: 25px;
    }

    .cable-types-list .check-list {
        columns: 1;
    }

    .vehicles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .features-row {
        flex-direction: column;
        gap: 15px;
    }

    .feature-box {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-form {
        padding: 30px 20px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        padding: 30px 20px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}
