/* Custom styles for Skvazhina24 - Based on original Adobe Muse design */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #cfe2ff;
    --accent: #17a2b8;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

/* Header styles */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    padding: 0;
}

.header .logo-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.header-light {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 50%, #1f4068 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark-bg);
}

/* Services Section */
#services {
    padding: 80px 0;
    background: var(--light-bg);
}

#services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
#about {
    padding: 80px 0;
    background: #fff;
}

#about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 20px;
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact-item svg {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}
