/* premium.css - Сдержанный премиум дизайн для КУДИМ РЕМОНТ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37; /* Сдержанное золото */
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #777777;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

/* Navbar */
.navbar-premium {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-premium .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.navbar-premium .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}
.navbar-premium .nav-link:hover {
    color: var(--secondary-color);
}
.navbar-premium .btn-outline-premium {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.navbar-premium .btn-outline-premium:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
}
.btn-premium {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}
.btn-premium:hover {
    background-color: #b8962e;
    color: #ffffff;
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}
.service-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.service-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}
.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}
.service-list li:last-child {
    border-bottom: none;
}

/* About / Stats Section */
.about-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 0;
}
.about-section h2 {
    color: #ffffff;
}
.stat-item {
    text-align: center;
    margin-bottom: 30px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.stat-text {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-step {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.process-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}
.process-step:hover .process-number {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.process-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    border-top: 1px solid #dee2e6;
}
.cta-box {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Footer */
.footer-premium {
    background-color: #111111;
    color: #aaaaaa;
    padding: 60px 0 30px;
}
.footer-premium h5 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-premium p, .footer-premium a {
    color: #888888;
    font-size: 14px;
}
.footer-premium a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer-premium a:hover {
    color: var(--secondary-color);
}
.footer-bottom {
    border-top: 1px solid #222222;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

/* Utilities */
.py-100 { padding-top: 100px; padding-bottom: 100px; }
