/* =========================
   styles.css
========================= */


/* ── BASE ── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: #0f0f10;
    color: #fff;
    overflow-x: hidden;
}


/* ── HEADER ── */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 36px;
    width: auto;
}

.nav a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    opacity: .7;
    transition: .3s;
}

.nav a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.btn-small {
    background: #ff3b30;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 59, 48, .5);
}


/* ── HERO ── */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
    filter: brightness(0.5) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
}

.hero p {
    opacity: .8;
    margin-top: 10px;
}


/* ── BUTTONS ── */

.btn {
    background: #ff3b30;
    padding: 12px 22px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 59, 48, .3);
}

.btn.outline {
    background: transparent;
    border: 1px solid #fff;
}

.btn.outline:hover {
    background: rgba(255, 255, 255, .1);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(255, 59, 48, .6); }
    70%  { box-shadow: 0 0 0 15px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0   rgba(255, 59, 48, 0); }
}


/* ── SECTIONS ── */

.section {
    padding: 90px 20px;
    max-width: 1100px;
    margin: auto;
}

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

.dark {
    background: #151517;
    border-radius: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ── SERVICES GRID ── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.service-card {
    background: #1c1c1e;
    border-radius: 14px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

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

.service-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
}

.service-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.service-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff3b30;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.service-btn:hover {
    box-shadow: 0 0 14px rgba(255, 59, 48, .5);
    transform: scale(1.03);
}


/* ── INFO BLOCK ── */

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.info-img {
    flex-shrink: 0;
    width: 320px;
}

.info-img img {
    width: 100%;
    aspect-ratio: 736 / 1308;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.info-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.info-text p {
    opacity: .8;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
}

.info-list {
    margin-top: 16px;
}

.info-list h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 14px 0 8px;
    color: #ff3b30;
}

.info-list ul {
    list-style: none;
    padding: 0;
}

.info-list ul li {
    opacity: .8;
    font-size: 14px;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
}

.info-list ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff3b30;
}


/* ── PRICES ── */

.price-list div {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #2a2a2a;
}


/* ── FOOTER ── */

footer {
    text-align: center;
    padding: 30px;
    opacity: .7;
}

.footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: .7;
    transition: .3s;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 12px 0;
}

.social-icon {
    color: #fff;
    opacity: .7;
    text-decoration: none;
    transition: .3s;
    display: flex;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}


/* ── BURGER MENU ── */

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    z-index: 999;
    padding: 10px 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid #2a2a2a;
    transition: .2s;
}

.mobile-menu a:hover {
    background: #1c1c1e;
}


/* ── RESPONSIVE ── */

@media (max-width: 700px) {

    /* Header */
    .header {
        padding: 12px 16px;
    }

    .logo {
        font-size: 13px;
        gap: 6px;
    }

    .logo-icon {
        height: 26px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .btn-small {
        padding: 7px 10px;
        font-size: 13px;
    }

    /* Hero */
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Sections */
    .section {
        padding: 50px 16px;
    }

    .section h2 {
        font-size: 22px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    /* Info block */
    .info-block {
        flex-direction: column;
    }

    .info-img {
        width: 100%;
    }

    .info-text h2 {
        font-size: 20px;
    }

    /* Prices */
    .price-list div {
        font-size: 13px;
        padding: 10px 6px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .price-list div span {
        font-weight: 600;
        color: #ff3b30;
    }

    /* Footer */
    footer {
        padding: 20px 16px;
        font-size: 13px;
    }
}
