/* Custom Styles for autozakaz-expert.ru */
:root {
    --primary-color: #0d6efd;
    --dark-accent: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.small-logo-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #6c757d;
    line-height: 1;
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section with Cinematic Vibe */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Bento-style Cards */
.bento-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
}

.dark-card {
    background-color: var(--dark-accent);
}

/* Highlight Service Card */
.highlight-card {
    background: linear-gradient(135deg, #0d6efd 0%, #004ab6 100%);
}

.btn-primary {
    border-radius: 10px;
    padding: 12px 24px;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

input.form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
}