﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #090909;
    color: #f3f3f3;
    font-family: 'Onest', sans-serif;
    scroll-padding-top: 110px;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #050505;
}

.hero-video-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg video {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.60)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.50));
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 620px 20px 80px;
}

.logo {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    
}

.nav {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 11;
}

.nav a {
    position: relative;
    z-index: 12;
    pointer-events: auto;
}
.nav a.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    margin: -12px 0;
    border-radius: 999px;
    background: #c89b5c;
    border: 2px solid rgba(255,255,255,.18);
    color: #111;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 10px 28px rgba(200, 155, 92, .24);
}

.nav a.nav-cta:hover {
    color: #111;
    background: #d7a968;
    box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 12px 32px rgba(215, 169, 104, .30);
}

/*.hero-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 16vh 24px 0;
    text-align: center;
}*/


.eyebrow,
.section-label {
    color: #c89b5c;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
}


.hero h1 {
    margin: 18px 0;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.02em;
}


.hero-text {
    max-width: 580px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #c89b5c;
    color: #111;
    font-weight: bold;
}

.section {
    padding: 90px 24px;
}

.section-with-topbar {
    padding-top: 170px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.4;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255,255,255,.72);
    transition: color .2s ease;
}

.breadcrumbs a:hover {
    color: #fff;
}

.section.dark {
    background: #0f0f0f;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: flex-end;
    font-size: 28px;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.14) 0%, rgba(10,10,10,.34) 48%, rgba(10,10,10,.86) 100%);
    z-index: 1;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    position: relative;
    z-index: 2;
}

.card.large {
    min-height: 320px;
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    max-width: 380px;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #242424, #121212);
    border: 1px solid rgba(255,255,255,.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.footer {
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #080808;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 32px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #f3f3f3;
    letter-spacing: .04em;
}

.footer-text {
    color: rgba(255,255,255,.56);
    font-size: 14px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #f3f3f3;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.02);
    transition: .2s ease;
    font-size: 18px;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(200,155,92,.6);
    color: #c89b5c;
    background: rgba(200,155,92,.08);
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,.88);
    font-size: 15px;
    transition: .2s ease;
}

.footer-contact a:hover {
    color: #c89b5c;
}

.footer-phone {
    color: rgba(255,255,255,.62) !important;
    font-size: 14px !important;
}

.footer-city {
    color: rgba(255,255,255,.62);
    font-size: 14px;
}

.order-box {
    max-width: 900px;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(180deg, #131313, #0d0d0d);
    border: 1px solid rgba(255,255,255,.08);
}

.order-lead {
    max-width: 700px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.7;
}

.order-toggle {
    margin-bottom: 0;
}

.order-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .45s ease, opacity .3s ease, margin-top .3s ease;
}

.order-panel.is-open {
    max-height: 900px;
    opacity: 1;
    margin-top: 28px;
}

.order-form {
    max-width: 100%;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: rgba(255,255,255,.86);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.10);
    background: #121212;
    color: #f3f3f3;
    border-radius: 18px;
    padding: 16px 18px;
    font: inherit;
    outline: none;
    transition: .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(200,155,92,.7);
    box-shadow: 0 0 0 3px rgba(200,155,92,.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.10);
    background: #121212;
    color: #f3f3f3;
    border-radius: 18px;
    padding: 16px 18px;
    font: inherit;
    outline: none;
    transition: .2s ease;
    appearance: none;
}

.form-group select:focus {
    border-color: rgba(200,155,92,.7);
    box-shadow: 0 0 0 3px rgba(200,155,92,.10);
}

.order-success {
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(200, 155, 92, 0.10);
    border: 1px solid rgba(200, 155, 92, 0.28);
    color: #f3f3f3;
    line-height: 1.6;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(10px);
    transform: scale(1.03);
}

.preloader-inner {
    text-align: center;
}

#preloader.hidden .preloader-inner {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.preloader-inner {
    text-align: center;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.preloader-logo {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 28px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
}

.preloader-line {
    width: 360px;
    max-width: 80vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-line-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0a84ff, #00cfff);
    box-shadow: 0 0 12px rgba(0, 207, 255, 0.8), 0 0 24px rgba(10, 132, 255, 0.45);
    animation: preloaderLine 1.8s ease-in-out infinite;
}

@keyframes preloaderLine {
    0% {
        width: 0%;
    }
    60% {
        width: 82%;
    }
    100% {
        width: 100%;
    }
}

.admin-body {
    min-height: 100vh;
    background: #0b0b0b;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #1a1a1a, #090909 60%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 36px;
    border-radius: 24px;
    background: rgba(20,20,20,.92);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 80px rgba(0,0,0,.35);
}

.login-card h1 {
    margin-top: 0;
    margin-bottom: 20px; 
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: #141414;
    color: #fff;
    font: inherit;
}

.admin-form textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-admin {
    margin-top: 12px;
    padding: 14px 18px;
    border: 0;
    border-radius: 14px;
    background: #c89b5c;
    color: #111;
    font-weight: bold;
    cursor: pointer;
}

.alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(190, 56, 56, .16);
    border: 1px solid rgba(190, 56, 56, .35);
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.sidebar {
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    background: #101010;
}

.sidebar-logo {
    margin-bottom: 32px;
    letter-spacing: 4px;
    font-size: 14px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 12px;
    color: rgba(255,255,255,.82);
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: rgba(255,255,255,.06);
    color: #fff;
}

.admin-main {
    padding: 28px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card,
.panel {
    background: #121212;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 22px;
}

.stat-card span {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    margin-bottom: 12px;
}

.stat-card strong {
    font-size: 40px;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.admin-table thead th {
    color: #d8c08a;
}

.admin-table tbody td {
    color: #f3f3f3;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.table-action-form {
    margin: 0;
}

.table-action-btn {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #f3f3f3;
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.table-action-btn:hover {
    border-color: rgba(200,155,92,.45);
    color: #d8c08a;
    background: rgba(200,155,92,.08);
}

.table-action-btn.danger:hover {
    border-color: rgba(190, 56, 56, .45);
    color: #ff9c9c;
    background: rgba(190, 56, 56, .12);
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.badge.green {
    background: rgba(70, 180, 110, .18);
    color: #88e2a5;
}

.badge.yellow {
    background: rgba(212, 170, 58, .16);
    color: #efcd72;
}

