/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background-color: #1a1a1a;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-img {
    height: 50px;
    width: auto;
}

.header__right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

@media (max-width: 1024px) {
    .header__right-side {
        gap: 0; /* Remove gap on mobile */
    }
    .header__contacts {
        display: none;
    }
}

.header__phone-icon {
    display: none; /* remove this class as it is not used anymore */
}

.header__phone-link {
    color: #f68a15;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header__phone-link:hover {
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    text-align: left;
    position: relative;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero__description {
    margin-bottom: 40px;
}

.hero__description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.hero__specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.hero__spec {
    background: #f68a15;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__price {
    margin-bottom: 40px;
}

.hero__price-label {
    font-size: 2rem;
    font-weight: 700;
    background: transparent;
    padding: 0;
    border: 2px solid #f68a15;
    color: #f68a15;
    padding: 16px 32px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__cta {
    background: #f68a15;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
}

.hero__cta:hover,
.hero__cta:focus {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    outline: none;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: none !important;
}

/* Info Section */
.info {
    padding: 100px 0;
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.info__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.info__table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #333;
    background: #1a1a1a;
    overflow: hidden;
}

.info__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 200px;
}

.info__cell {
    padding: 30px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info__cell:last-child {
    border-right: none;
}

.info__row:last-child .info__cell {
    border-bottom: none;
}

.info__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.info__item:last-child {
    border-bottom: none;
}

.info__label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
}

.info__value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.info__value--highlight {
    /* #f68a15 #ff6b35 */
    color: #f68a15; 
    font-weight: 700;
    font-size: 1.1rem;
}

.info__value--available {
    color: #4caf50;
    font-weight: 700;
}

.info__value--warranty {
    color: #2196f3;
    font-weight: 700;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><defs><pattern id="hexagons" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0L30 10L30 30L20 40L10 30L10 10Z" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="40" height="40" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.gallery__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gallery__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}

.gallery__slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.gallery__slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
}

/* слайдер отображение на главной */
.gallery__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__slide-img.loaded {
    opacity: 1;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__nav:hover:not(:disabled) {
    background: #f68a15;
    transform: translateY(-50%) scale(1.1);
}

.gallery__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.2);
}

.gallery__prev {
    left: 10px;
}

.gallery__next {
    right: 10px;
}

.gallery__counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.gallery__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: #cccccc;
    font-size: 1.2rem;
    text-align: center;
}

/* Video Section */
.video {
    padding: 100px 0;
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="waves" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M0 40Q20 20 40 40T80 40" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="80" height="80" fill="url(%23waves)"/></svg>');
    opacity: 0.4;
}

.video__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.video__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.video__wrapper {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.video__selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.video__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f68a15, #e55a2b);
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(246, 138, 21, 0.3);
    position: relative;
    overflow: hidden;
}

.video__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.video__btn:hover::before {
    left: 100%;
}

.video__btn-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.video__btn:hover,
.video__btn:focus,
.video__btn.active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(246, 138, 21, 0.4);
    outline: none;
}

.video__btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f68a15;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal__player {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: linear-gradient(135deg, #f68a15, #e55a2b);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 138, 21, 0.3);
    z-index: 1001;
}

.video-modal__close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 138, 21, 0.4);
}

.video__iframe {
    border: none;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="triangles" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,10 90,80 10,80" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23triangles)"/></svg>');
    opacity: 0.3;
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.advantages__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.advantages__card {
    text-align: center;
    padding: 50px 30px;
    background: #2c2c2c;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.advantages__card:hover {
    border-color: #f68a15;
    transform: translateY(-8px);
}

.advantages__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f68a15;
}

.advantages__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.advantages__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantages__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: #2c2c2c;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="squares" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="20" y="20" width="20" height="20" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23squares)"/></svg>');
    opacity: 0.4;
}

.why-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.why-us__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-us__card {
    text-align: center;
    padding: 50px 30px;
    background: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.why-us__card:hover {
    border-color: #f68a15;
    transform: translateY(-8px);
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f68a15;
}

.why-us__number {
    font-size: 4rem;
    font-weight: 900;
    color: #f68a15;
    margin-bottom: 24px;
    display: block;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.why-us__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><defs><pattern id="circles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="50" height="50" fill="url(%23circles)"/></svg>');
    opacity: 0.3;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.faq__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: #2c2c2c;
    border: 1px solid #333;
    overflow: hidden;
    margin-bottom: 16px;
}

.faq__question {
    width: 100%;
    padding: 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq__question:hover,
.faq__question:focus {
    background: #333;
    outline: none;
}

.faq__icon {
    font-size: 2rem;
    font-weight: 700;
    color: #f68a15;
    transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer.active {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 30px 30px;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 90"><defs><pattern id="stars" width="90" height="90" patternUnits="userSpaceOnUse"><path d="M45 0L50 35L85 45L50 55L45 90L40 55L5 45L40 35Z" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="90" height="90" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.contacts__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.contacts__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 80px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__item {
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contacts__icon {
    font-size: 2.5rem;
    color: #f68a15;
}

.contacts__details {
    display: flex;
    flex-direction: column;
}

.contacts__label {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contacts__value {
    font-size: 1.1rem;
    color: #f68a15;
    text-decoration: none;
}

.contacts__value:hover {
    text-decoration: underline;
}







/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><defs><pattern id="minidots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="30" height="30" fill="url(%23minidots)"/></svg>');
    opacity: 0.4;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.footer__text {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Map Section */
.map {
    padding: 100px 0;
    background: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 70"><defs><pattern id="lines" width="70" height="70" patternUnits="userSpaceOnUse"><path d="M0 35L70 35" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="70" height="70" fill="url(%23lines)"/></svg>');
    opacity: 0.4;
}

.map__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.map__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.map__wrapper {
    border: 1px solid #333;
    overflow: hidden;
}

.map__iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero__content {
        text-align: center;
    }
    
    
    .hero__specs {
        justify-content: center;
    }
    
    .info__row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .info__cell {
        border-right: none;
        padding: 20px;
    }
    
    .info__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .info__value {
        text-align: left;
    }

    /* Video responsive */
    .video {
        padding: 60px 0;
    }

    .video__selector {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .video__btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        margin: 0 auto;
    }

    /* Modal responsive */
    .video-modal__content {
        max-width: 100%;
        max-height: 100%;
        padding: 20px;
    }

    .video-modal__player {
        width: 100vw;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }

    .video-modal__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .video__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .video__wrapper {
        max-width: 100%;
        margin: 0 16px;
    }

    .video__player {
        max-width: 100%;
    }

    /* Contacts responsive */
    .contacts {
        padding: 60px 0;
    }

    .contacts__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacts__info {
        order: 1;
    }

    .contacts__form {
        order: 2;
        padding: 30px 20px;
    }

    .contacts__form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contacts__item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        text-align: left;
    }

    .contacts__icon {
        margin-bottom: 10px;
        font-size: 2rem;
        order: 1;
    }

    .contacts__details {
        width: 100%;
        order: 2;
    }

    .form {
        gap: 20px;
    }

    .form__input,
    .form__textarea {
        padding: 15px 16px;
        font-size: 1rem;
    }

    .form__label {
        font-size: 0.8rem;
    }

    .form__submit {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Map responsive */
    .map {
        padding: 60px 0;
    }

    .map__title {
        font-size: 2rem;
        margin-bottom: 30px;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.2;
        padding: 0 16px;
        width: 100%;
    }

    .advantages__title {
        font-size: 2rem;
        margin-bottom: 40px;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.2;
        padding: 0 16px;
        width: 100%;
    }

    .advantages__card {
        padding: 30px 20px;
    }

    .advantages__card-title {
        font-size: 1.4rem;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.2;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .map__subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 16px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .map__iframe {
        height: 300px;
    }
}

@media (min-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero__content {
        text-align: left;
    }
    
    .info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
/* Override for smaller screens if needed */
@media (max-width: 992px) and (min-width: 769px) {
    .contacts__content {
        grid-template-columns: 1fr;
    }
}
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .info__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .why-us {
        background: #000;
        color: #fff;
    }
}

/* Contacts Form */
.contacts__form {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
    width: 100%;
    text-align: center;
}

.contacts__form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

#work-status-container {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
}

.work-schedule {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.work-schedule td {
    padding: 12px;
    border-bottom: 1px solid #333;
    color: #cccccc;
    font-size: 1.1rem;
}

.work-schedule tr:last-child td {
    border-bottom: none;
}

.work-schedule td:first-child {
    font-weight: 700;
    color: #ffffff;
}

.work-schedule td:last-child {
    text-align: right;
    color: #f68a15;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form__group {
    position: relative;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 18px 20px;
    background: #2c2c2c;
    border: 1px solid #444;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #888;
}

.form__input:focus,
.form__textarea:focus {
    border-color: #f68a15;
    background: #333;
    outline: none;
}

.form__label {
    position: absolute;
    top: -12px;
    left: 15px;
    background: #1a1a1a;
    padding: 0 5px;
    color: #f68a15;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__submit {
    background: #f68a15;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.form__submit:hover,
.form__submit:focus {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    outline: none;
}


/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f68a15;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
    background-color: #e55a2b;
    transform: scale(1.1);
}

/* Header Navigation */
.header__nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px; /* Limit width on desktop */
    height: 100vh;
    background-color: #1a1a1a;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
}

.header__nav.active {
    right: 0;
}

.header__nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header__nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.header__nav-link:hover {
    color: #f68a15;
}

/* Burger button */
.header__burger-btn {
    display: block; /* Always display burger */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative; /* Ensure it's clickable */
}

.header__burger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s;
}

.header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.header__nav-link {
    font-size: 1.5rem;
}

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

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

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

.status-open {
    color: #4caf50; /* Green */
}

.status-closed {
    color: #f44336; /* Red */
}

.next-change {
    color: #ffffff; /* White */
    font-size: 1rem;
    font-weight: 400;
    margin-left: 10px;
}

.work-schedule .current-day td {
    background-color: rgba(246, 138, 21, 0.1);
    color: #f68a15;
}

.work-schedule .current-day td:last-child {
    color: #ffffff;
}


/* Image Modal */
.image-modal__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
/* Mobile font size adjustments */
@media (max-width: 768px) {
    .info__label,
    .info__value {
        font-size: 1.4rem;
    }

    .faq__question {
        font-size: 1.2rem;
    }

    .faq__answer p {
        font-size: 1.3rem;
    }

    .contacts__value {
        font-size: 1.4rem;
    }
}
