@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital@0;1&display=swap');

input{
	outline: none !important;
}
textarea{
	resize: none;
}
.aurum-header .container{
	max-width: 1200px;
}
section{
	overflow: hidden;
}

:root {
    --black: #0A0A0A;
    --black-light: #141414;
    --graphite: #1E1E1E;
    --aurum: #C6A45C;
    --aurum-dark: #9E8B4B;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --gray: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Прелоадер */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-car {
    position: relative;
    width: 200px;
    height: 100px;
}

.car-body {
    position: absolute;
    width: 150px;
    height: 40px;
    background: linear-gradient(90deg, var(--aurum), #fff);
    border-radius: 20px 20px 0 0;
    bottom: 30px;
    left: 25px;
    animation: drive 2s infinite;
}

.wheel {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #333;
    border: 3px solid var(--aurum);
    border-radius: 50%;
    bottom: 10px;
    animation: rotate 1s linear infinite;
}

.wheel-left { left: 40px; }
.wheel-right { left: 130px; }

@keyframes drive {
    0% { transform: translateX(-10px); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
    100% { transform: translateX(-10px); opacity: 0.5; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
.aurum-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 164, 92, 0.2);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
}
.navbar-toggler{
	outline: none !important;
	background: #fff;
}

.navbar-brand span {
    color: var(--aurum);
    font-weight: 600;
}

.nav-link {
    color: var(--white) !important;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--aurum);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1494905998402-395d579af36f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed;
    padding-top: 100px;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 90%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--aurum);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    font-weight: 700;
    color: var(--aurum);
    display: inline-block;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: skew(0deg, 0deg); }
    95% { transform: skew(5deg, 2deg); text-shadow: -2px 0 red; }
    96% { transform: skew(-5deg, -2deg); text-shadow: 2px 0 blue; }
}

.hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-aurum-primary, .btn-aurum-outline {
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
}

.btn-aurum-primary {
    background: var(--aurum);
    color: var(--black);
    margin-right: 1rem;
}

.btn-aurum-primary:hover {
    background: transparent;
    color: var(--aurum);
    outline: 1px solid var(--aurum);
}

.btn-aurum-outline {
    border: 1px solid var(--aurum);
    color: var(--aurum);
    background: transparent;
}

.btn-aurum-outline:hover {
    background: var(--aurum);
    color: var(--black);
}

.hero-3d-icon {
    font-size: 20rem;
    color: var(--aurum);
    opacity: 0.3;
    transform: rotateY(20deg) rotateX(10deg);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(198,164,92,0.3));
}

@keyframes float {
    0%, 100% { transform: rotateY(20deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(20deg) rotateX(10deg) translateY(-30px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--aurum);
    border-right: 2px solid var(--aurum);
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* Catalog Section */
.catalog-section {
    padding: 120px 0;
    background: var(--black-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-pre {
    color: var(--aurum);
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
}

.section-title span {
    color: var(--aurum);
    font-weight: 700;
}

.car-card {
    background: var(--graphite);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.car-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.car-card:hover img {
    transform: scale(1.1);
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.btn-order {
    background: var(--aurum);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: all 0.3s;
}

.car-card:hover .btn-order {
    transform: translateY(0);
}

.car-details {
    padding: 1.5rem;
}

.car-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.car-specs {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Delivery Section */
.delivery-section {
    padding: 120px 0;
}

.delivery-image {
    position: relative;
}

.delivery-image img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(50%);
}

.delivery-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--aurum);
    color: var(--black);
    padding: 1.5rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.delivery-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.delivery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--aurum);
    font-size: 1.5rem;
}

/* Calculator Section */
.calculator-section {
    padding: 120px 0;
    background: var(--black-light);
}

.calculator-card {
    background: var(--graphite);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 164, 92, 0.1);
}

.aurum-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray);
    border-radius: 0;
    color: var(--white);
    padding: 0.5rem 0;
}
.aurum-input option{
	background: var(--black-light);
}
.aurum-input::placeholder{
	color: var(--white);
}

.aurum-input:focus {
    background: transparent;
    border-bottom-color: var(--aurum);
    box-shadow: none;
    color: var(--white);
}

.transport-options {
    margin: 1rem 0;
}

.form-check-input {
    background-color: transparent;
    border-color: var(--aurum);
}

.form-check-input:checked {
    background-color: var(--aurum);
    border-color: var(--aurum);
}

.form-check-label {
    color: var(--white);
}

.result-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(198, 164, 92, 0.1);
    border-left: 3px solid var(--aurum);
}

.result-box p {
    font-size: 1.5rem;
    margin: 0;
}

.result-box span {
    color: var(--aurum);
    font-weight: 700;
}

/* Technology Slider */
.technology-section {
    padding: 120px 0;
}

.techSwiper {
    width: 100%;
    height: 500px;
}

.techSwiper .swiper-slide {
    text-align: center;
}

.techSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--aurum) !important;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
}

.swiper-pagination-bullet-active {
    background: var(--aurum) !important;
}

/* Concierge Section */
.concierge-section {
    padding: 120px 0;
    background: var(--black-light);
}

.nav-pills .nav-link {
    background: transparent;
    color: var(--white);
    border-radius: 0;
    padding: 1rem;
    border-left: 2px solid transparent;
    margin: 0.5rem 0;
}

.nav-pills .nav-link.active {
    background: transparent;
    color: var(--aurum);
    border-left-color: var(--aurum);
}

.tab-content {
    padding: 2rem;
    border: 1px solid rgba(198,164,92,0.2);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--aurum);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Custom Section */
.custom-section {
    padding: 120px 0;
    background: var(--black-light);
}

.custom-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.custom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
}

.custom-overlay p {
    color: var(--aurum);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

.contact-text {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--graphite);
    padding: 2rem;
    border-radius: 10px;
}

/* Footer */
.aurum-footer {
    background: var(--black-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(198,164,92,0.1);
}

.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--aurum);
}

.footer-title {
    color: var(--aurum);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.aurum-footer ul {
    list-style: none;
    padding: 0;
}

.aurum-footer ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.aurum-footer ul li a:hover {
    color: var(--aurum);
}

/* Modal */
.aurum-modal {
    background: var(--graphite);
    color: var(--white);
    border: 1px solid var(--aurum);
}

.aurum-modal .modal-header {
    border-bottom-color: var(--aurum);
}

.aurum-modal .modal-footer {
    border-top-color: var(--aurum);
}

.aurum-modal .btn-close {
    filter: invert(1) brightness(2);
}

/* Адаптивність */
@media (max-width: 992px){
	.hero-3d-icon{
		text-align: center;
	}
	.aurum-header{
		padding: 0;
	}
}
@media (max-width: 768px) {
    .nav-link {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-3d-icon {
        font-size: 10rem;
    }
    
    .delivery-badge {
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-section .col-6 {
        margin-bottom: 2rem;
    }

}
@media (max-width: 574px){
	.hero-cta a{
		width: 100%;
		text-align: center;
	}
	.hero-cta a+a{
		margin-top: 20px;
	}
}	