/* ===== ОСНОВНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
    background: #1a1a1a;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,.8);
    animation: slideUp 1s ease-in-out;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,.8);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 1s ease-in-out .3s forwards;
    opacity: 0;
}

.cta-button {
    background: #FF6B00;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    animation: fadeIn 1s ease-in-out .6s forwards;
    opacity: 0;
}

.cta-button:hover {
    background: #FF8A33;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/* ===== NAVIGATION ===== */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all .3s;
}

.menu-toggle.active {
    background: rgba(255,255,255,.3);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: all .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(0,0,0,.9);
    z-index: 999;
    transition: right .3s ease-in-out;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: all .3s;
}

.nav-link:hover {
    color: #FF6B00;
    padding-left: 25px;
}

/* ===== MESSENGER ICONS ===== */
.messenger-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.messenger-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    transition: transform .3s;
    position: relative;
}

.messenger-icon.phone {
    background: #FF6B00;
    animation: pulse 2s infinite;
}

.messenger-icon:hover {
    transform: scale(1.1);
}

.messenger-icon.viber {
    background: #7360F2;
}

.messenger-icon.telegram {
    background: #0088CC;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.messenger-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 50px;
    white-space: nowrap;
    background: rgba(0,0,0,.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.messenger-icon:hover::after {
    opacity: 1;
}

/* ===== FORM SECTION ===== */
.form-section {
    background: #111;
    padding: 50px 0;
    color: #fff;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-content {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    order: 1;
}

.form-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF6B00;
}

.form-subtitle {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.file-upload {
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all .3s;
    background: rgba(255,255,255,.05);
}

.file-upload:hover {
    border-color: #FF6B00;
    background: rgba(255,255,255,.1);
}

.file-upload i {
    font-size: 30px;
    color: #FF6B00;
    margin-bottom: 10px;
}

.file-upload-text {
    font-size: 14px;
    color: #ccc;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 14px;
    background: #333;
    color: #fff;
}

.form-group input::placeholder {
    color: #999;
}

.submit-form-btn {
    background: #FF6B00;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s;
}

.submit-form-btn:hover {
    background: #FF8A33;
}

.form-image {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)), url('./images/Ladavestadoor.jpg') center/cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
    order: 2;
     background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)), url('./images/Ladavestadoor.jpg') center/cover;
    /* Добавьте смещение по вертикали, например, к низу */
    background-position: center center;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 50px 20px;
    background: #1a1a1a;
    color: #fff;
}

.section-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.section-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
    order: 1;
    position: relative;
}

.price-callout {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,107,0,.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.section-content {
    padding: 0;
    order: 2;
}

.section-title {
    color: #FF6B00;
    font-size: 24px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 10px;
}

.section-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== ACTION SECTION ===== */
.action-section {
    padding: 60px 20px;
    text-align: center;
    background: #111;
}

.action-title {
    color: #FF6B00;
    font-size: 28px;
    margin-bottom: 15px;
}

.action-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-orange {
    background: #FF6B00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.btn-orange:hover {
    background: #FF8A33;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 50px 20px;
    background: #1a1a1a;
}

.gallery-title {
    color: #FF6B00;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

/* ===== BLOG ===== */
.blog-section {
    padding: 50px 20px;
    background: #151515;
    color: #fff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-title {
    color: #FF6B00;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF6B00;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    transition: transform .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 20px;
    position: relative;
}

.blog-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FF6B00;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #aaa;
}

.blog-card-link {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color .3s;
}

.blog-card-link:hover {
    color: #FF8A33;
}

.blog-card-link i {
    margin-left: 5px;
    transition: transform .3s;
}

.article-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background: #1e1e1e;
    border-radius: 0 0 8px 8px;
}

.article-full.active {
    max-height: 80vh;
    overflow-y: auto;
}

.article-content {
    padding: 20px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 15px;
}

.article-content h4 {
    color: #FF8A33;
    margin: 15px 0;
    font-size: 20px;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.article-content ul {
    padding-left: 20px;
    margin: 10px 0;
}

.article-content li {
    margin-bottom: 8px;
}

.close-article {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: #FF6B00;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: background .3s;
}

.close-article:hover {
    background: #ff8c3b;
}

.close-article i {
    margin-right: 8px;
}

.article-full::-webkit-scrollbar {
    width: 8px;
}

.article-full::-webkit-scrollbar-thumb {
    background: #FF6B00;
    border-radius: 4px;
}

/* ===== LOCATION SECTION - ИСПРАВЛЕННЫЕ СТИЛИ ДЛЯ ЧИТАЕМОСТИ ===== */
.location-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #FF6B00;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.location-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-map {
    flex: 1;
    min-height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,107,0,0.1);
}

/* Стили для карточки контактов - ИСПРАВЛЕНА ЧИТАЕМОСТЬ */
.contact-card {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #333;
}

.contact-card h3 {
    color: #FF6B00;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Улучшенная читаемость текста */
.contact-card p,
.contact-card strong {
    color: #ffffff !important; /* Принудительно белый цвет */
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-card strong {
    color: #FFD700 !important; /* Золотой для выделения */
    font-weight: 700;
}

.location-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-item i {
    width: 20px;
    margin-right: 12px;
    color: #FF6B00;
    font-size: 16px;
}

.feature-item span {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
}

.contact-details {
    background: rgba(255,107,0,0.08);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 3px solid #FF6B00;
    border: 1px solid rgba(255,107,0,0.2);
}

.contact-details p {
    margin-bottom: 12px;
    color: #ffffff !important;
    font-weight: 500;
}

.contact-details i {
    width: 20px;
    margin-right: 10px;
    color: #FF6B00;
}

.contact-details strong {
    color: #FFD700 !important;
    font-weight: 700;
}

.route-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B00, #FF8A33);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.route-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
    color: white;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .location-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-card p,
    .feature-item span {
        font-size: 14px;
    }
    
    .route-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
/* ===== FOOTER ===== */
.site-footer {
    background: #111;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .8;
}

.footer-title {
    color: #FF6B00;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-contacts i {
    color: #FF6B00;
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.footer-contacts p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    background: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
}

.social-icon:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    background: #0a0a0a;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: color .3s;
}

.footer-link:hover {
    color: #FF6B00;
}

/* ===== UTILITY CLASSES ===== */
.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.upload-preview-item {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview-item .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255,0,0,.7);
    color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-progress {
    background: rgba(0,0,0,.7);
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    margin: 10px 0;
    text-align: center;
    display: none;
}

.progress-bar {
    height: 5px;
    background: #FF6B00;
    width: 0;
    transition: width .3s;
    margin-bottom: 5px;
}

.file-upload.dragover {
    border: 2px dashed #4CAF50;
    background-color: rgba(76,175,80,.1);
}

.upload-button {
    background: #FF6B00;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    transition: all .3s;
}

.upload-button:hover {
    background: #FF8A33;
}

/* ===== PRICE SECTION STYLES ===== */
.price-range {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.price-item {
    flex: 1;
    background: rgba(255,255,255,.03);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,107,0,.1);
}

.price-item i {
    font-size: 24px;
    color: #FF6B00;
}

.price-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #FFD700;
}

.price-amount {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.price-factors {
    margin-top: 25px;
}

.factors-title {
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.factors-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.factors-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,.1);
    gap: 12px;
}

.factors-list i {
    color: #FF6B00;
    width: 20px;
    text-align: center;
}

.price-notice {
    background: rgba(255,107,0,.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-notice i {
    color: #FF6B00;
    font-size: 20px;
}

.estimate-link {
    color: #FF6B00;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed;
    transition: all .3s;
}

.estimate-link:hover {
    color: #FF8A33;
    border-bottom-color: transparent;
}

/* ===== TERMS SECTION STYLES ===== */
.terms-block {
    background: rgba(255,107,0,.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.terms-intro {
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.term-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    line-height: 1.4;
}

.term-icon {
    color: #FF6B00;
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

.terms-summary {
    margin-top: 25px;
}

.terms-summary p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.summary-icon {
    color: #FF6B00;
    margin-right: 10px;
    font-size: 18px;
}

.terms-cta {
    display: inline-flex;
    align-items: center;
    background: #FF6B00;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    transition: all .3s;
}

.terms-cta:hover {
    background: #FF8A33;
    transform: translateY(-2px);
}

.terms-cta i {
    margin-right: 8px;
}

/* ===== ACCESS SECTION STYLES ===== */
.professional-access {
    margin-top: 20px;
}

.principle-box {
    background: rgba(255,107,0,.1);
    border-left: 3px solid #FF6B00;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.principle-icon {
    color: #FF6B00;
    font-size: 20px;
}

.principle-box p {
    margin: 0;
    font-size: 15px;
}

.principle-box strong {
    color: #FFD700;
}

.access-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.access-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,107,0,.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.access-card i {
    color: #FF6B00;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.access-card h3 {
    color: #FFD700;
    font-size: 15px;
    margin: 0 0 8px 0;
}

.access-card p {
    font-size: 13px;
    margin: 0;
    color: #aaa;
}

.technical-note {
    font-size: 13px;
    color: #FF6B00;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255,107,0,.05);
    border-radius: 6px;
}

.technical-note i {
    font-size: 14px;
}

/* ===== TRACES SECTION STYLES ===== */
.quality-statement {
    margin-top: 20px;
}

.main-guarantee {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,107,0,.3);
}

.highlight {
    color: #FFD700;
    font-weight: 600;
}

.quality-details {
    margin: 30px 0;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #FF6B00;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.detail-item p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-left: 37px;
}

.technical-explanation {
    background: rgba(255,107,0,.05);
    border-left: 2px solid #FF6B00;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 35px;
}

.technical-explanation h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
}

.technical-explanation ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.technical-explanation li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.technical-explanation li:before {
    content: '•';
    color: #FF6B00;
    position: absolute;
    left: 5px;
    font-size: 20px;
}

/* ===== SEO TEXT ===== */
.seo-text {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.6;
}

.seo-text h2 {
    color: #FF6B00;
    font-size: 24px;
    margin-bottom: 15px;
}

.seo-text p {
    margin-bottom: 15px;
}

.seo-text strong {
    color: #FFD700;
}

/* ===== MODAL GALLERY ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-caption {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 12px;
    background: rgba(0,0,0,0.7);
    font-size: 16px;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #FF6B00;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
}

.nav-arrow:hover {
    color: #FF6B00;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
    .logo {
        width: 250px;
    }
    
    .form-container {
        flex-direction: row;
    }
    
    .form-content {
        order: 1;
    }
    
    .form-image {
        order: 2;
        height: 100%;
        min-height: 400px;
    }
    
    .section-container {
        flex-direction: row;
    }
    
    .section-image {
        height: 350px;
        order: 1;
    }
    
    .section-content {
        padding: 20px;
        order: 2;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .section-text {
        font-size: 16px;
    }
    
    .action-title {
        font-size: 36px;
    }
    
    .action-subtitle {
        font-size: 18px;
    }
    
    .action-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-orange, .btn-white {
        width: auto;
    }
    
    .gallery-title {
        font-size: 28px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .location-content {
        flex-direction: row;
    }
    
    .location-map {
        height: 400px;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .seo-text h2 {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 18px 50px;
        font-size: 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .action-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }
    
    .terms-block {
        padding: 15px;
    }
    
    .term-item {
        font-size: 14px;
    }
    
    .price-range {
        flex-direction: column;
    }
    
    .price-item {
        padding: 12px;
    }
    
    .access-types {
        grid-template-columns: 1fr 1fr;
    }
    
    .principle-box {
        flex-direction: column;
        text-align: center;
    }
    
    .location-map {
        height: 300px;
    }
    
    .route-button {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .nav-arrow {
        font-size: 40px;
        padding: 15px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .modal-caption {
        bottom: 20px;
        font-size: 14px;
        padding: 10px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Адаптивность для секции контактов */
    .location-content {
        flex-direction: column;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .location-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .access-types {
        grid-template-columns: 1fr;
    }
}

/* Блог - адаптация сетки */
.blog-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
}

/* Для случая с 1 статьёй */
.blog-grid:has(.blog-card:only-child) .blog-card {
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Центрирование всех секций */
.hero-content,
.form-container,
.section-container,
.gallery-grid,
.blog-container,
.location-container,
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* WebP поддержка для фоновых изображений */
@supports (background-image: url('image.webp')) {
    .section-image[style*="mini.jpg"] {
        background-image: url('./images/mini.webp') !important;
    }
    .section-image[style*="solaris.jpg"] {
        background-image: url('./images/solaris.webp') !important;
    }
    .section-image[style*="twocars.jpg"] {
        background-image: url('./images/twocars.webp') !important;
    }
    .section-image[style*="razbor1.jpg"] {
        background-image: url('./images/razbor1.webp') !important;
    }
    .section-image[style*="udalenie_vmyatin.jpg"] {
        background-image: url('./images/udalenie_vmyatin.webp') !important;
    }
    .form-image {
        background-image: url('./images/Ladavestadoor.webp') !important;
    }
}