/* Root colors */
:root {
    --vk-gold: #ffbb00;
    --white: #fff;
    --black-bg: #0a0a0a;
}

/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--black-bg);
    color: var(--white);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background: var(--black-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: bold;
    font-size: 1.8rem;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 40px;
    height: auto;
}
.vk-gold {
    color: var(--vk-gold);
    font-weight: 900;
}
.interior-white {
    color: var(--white);
    font-weight: 900;
    margin-left: 5px;
}

/* Desktop nav */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.desktop-nav ul li a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}
.desktop-nav ul li a:hover {
    color: var(--vk-gold);
}

/* Mobile menu icon */
.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    background: var(--black-bg);
}
@media screen and (max-width: 768px) {
    .mobile-nav.active {
        display: block;
    }
}

.mobile-nav ul {
    list-style: none;
    padding: 10px 20px;
}
.mobile-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav ul li a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 500px;
    color: var(--white);
}
.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.slide-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.slide-content h2 .vk-gold {
    font-weight: 800;
}
.slide-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 420px;
}

/* Buttons in hero */
.btn-group {
    display: flex;
    gap: 15px;
}
.btn {
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}
.yellow-btn {
    background-color: var(--vk-gold);
    color: var(--black-bg);
    border-color: var(--vk-gold);
}
.yellow-btn:hover {
    background-color: #d19c00;
    border-color: #d19c00;
}


/* Slider dots - Centered */
.slider-dots.centered {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}
.dot {
    height: 14px;
    width: 14px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active, .dot:hover {
    background: var(--vk-gold);
}

/* --- WHY CHOOSE US --- */
.why-choose {
    background: #111;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}
.why-choose h2 {
    color: var(--vk-gold);
    margin-bottom: 20px;
    font-size: 2.2rem;
}
.why-description {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}
.why-points {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.why-points div {
    background: #222;
    padding: 15px 25px;
    border-radius: 6px;
    border: 1px solid #333;
    color: #fff;
    font-weight: 600;
}

/* --- OUR SERVICES --- */
.our-services {
    text-align: center;
    margin: 50px 0 60px 0;
    color: var(--white);
}
.our-services h2 {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

/* Services layout */
.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 0 auto;
}
.service-card {
    background: #111;
    padding: 20px;
    border-radius: 6px;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    color: var(--white);
    box-shadow: 0 0 8px rgba(255,187,0,0.2);
}
.service-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}
.service-card h3 .vk-gold {
    font-weight: 700;
}
.service-card p {
    flex-grow: 1;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.small-btn {
    width: fit-content;
    padding: 8px 14px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.service-card img {
    width: 100%;
    height: 220px;
    margin-top: 10px;
    border-radius: 8px;
    object-fit: cover;
}

/* --- CONTACT BAR --- */
.contact-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #121212;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    font-size: 0.9rem;
}
.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vk-gold);
    font-weight: 600;
}
.contact-info img {
    width: 18px;
    filter: invert(1);
}

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 35px 0 40px 0;
    color: var(--white);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}
/* Contact form */
.footer-contact h3 {
    color: var(--vk-gold);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.4rem;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
}
#contact-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}
#contact-form input:focus {
    outline: 2px solid var(--vk-gold);
}
#contact-form button {
    border: none;
    background-color: var(--vk-gold);
    color: var(--black-bg);
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px;
    transition: background-color 0.3s ease;
}
#contact-form button:hover {
    background-color: #d19c00;
}

/* Social icons */
.footer-follow h3 {
    color: var(--vk-gold);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.4rem;
}
.social-links {
    margin-top: 30px;
}

.social-links h4 {
    color: #fff;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #222;
    color: var(--vk-gold);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--vk-gold);
    color: #000;
    transform: translateY(-5px);
}
/* --- MEDIA QUERIES --- */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .services-wrapper {
        flex-direction: column;
    }
    .why-points {
        flex-direction: column;
        align-items: center;
    }
    .footer-flex {
        flex-direction: column;
        align-items: center;
    }
    .footer-contact, .footer-follow {
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider {
        height: 600px;
    }
    .slide-content {
        max-width: 90%;
        left: 5%;
      
    }
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
     
}

