/*
Theme Name:  patent76.ru - 2026
Theme URI:  
Description: The original https://patent76.ru/  theme.
Version: 2026
Author: alisa
*/

/* CSS Document */
 
        :root {
            --burgundy: #8B1538;
            --burgundy-dark: #6B0F2A;
            --gold: #f3ca76;
            --gold-light: #F4E4B0;
            --white: #FFFFFF;
            --light-bg: #FAF8F5;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        
        h4, h5, h6 {
         font-family: 'Roboto', sans-serif;
         font-weight: 700;
        }
        
        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%) !important;
            box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--gold) !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
             display: flex;
             gap: 15px;
        }
        
      .navbar-brand  span {
         font-size: 12px;
         display: block;
         text-transform: uppercase;
        }
        
           .navbar-brand img {
           width: 60px;
           }
        
        .navbar-nav .nav-link {
            color: var(--white) !important;
            margin: 0 0.5rem;
            transition: all 0.3s;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--gold);
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 85vh;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);    
            overflow: hidden;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(139, 21, 56, 0.3) 0%, rgba(139, 21, 56, 0.1) 50%, rgba(139, 21, 56, 0.1) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem 0;
        }
        
       
        
        .hero-title {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .hero-subtitle {
            color: var(--gold-light);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        
        .hero-text {
            color: var(--white);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }  
        
        .credential-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 1rem 1.5rem;
            margin: 0.5rem;
            display: inline-block;
            color: var(--white);
        }
        
        .credential-badge i {
            color: var(--gold);
            margin-right: 0.5rem;
        }         
        
        .btn-gold {
            background:  var(--gold);
            color: var(--burgundy-dark);
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-small.btn-gold {
          font-size: 10px;
          padding: 5px 10px;
        }
        
        .btn-gold:hover {
            transform: translateY(-3px);
            border: 2px solid var(--gold);
            color: var(--burgundy-dark);
       
        }
        
        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            background: transparent;
        }
        
        .btn-outline-gold:hover {
            background: var(--gold);
            color: var(--burgundy-dark);
            transform: translateY(-3px);
        }
        
        .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8B1538 0%, #6B0F2A 100%);
    color: white;
    padding: 0;
}

.hero-content {
    
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-photo {
    height: 100vh;
    overflow: hidden;
    padding: 0 !important;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    object-position: top;
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-content {
        padding: 60px 30px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 60px;
    }
    
    .hero-photo {
        height: 400px;
    }
}

@media (max-width: 576px) {

.navbar-brand img {
    width: 50px;
}

.btn-gold {
          
        margin-bottom: 10px;
    padding: 1rem 2.4rem;
    font-size: 0.7rem;
}

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-photo {
        height: 400px;
    }
}
        
        /* Section Styles */
        .section-title {
            color: var(--burgundy);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 100%);
            border-radius: 2px;
        }
        
        .section-title-left::after {
            left: 0;
            transform: none;
        }
        
        /* About Maria Section */
        .about-section {
            background: var(--light-bg);
            padding: 5rem 0;
        }
        
        .about-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            border-left: 5px solid var(--gold);
        }
        
        /* Why Local Section */
        .why-local-section {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
            padding: 5rem 0;
            color: var(--white);
        }
        
        .benefit-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.4s;
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }
        
        .benefit-icon {
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .benefit-title {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: var(--white);
        }
        
         .services-section .col-md-6,  .why-local-section  .col-md-6 {
         margin-bottom: 30px;
         }
        
        .service-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.4s;
            height: 100%;
            border: 3px solid transparent;
        }
        
        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--burgundy);
            margin-bottom: 1.5rem;
        }
        
        .service-title {
            color: var(--burgundy);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .service-price {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 1rem;
        }
        
        /* Team Section */
        .team-section {
             background: var(--light-bg);   
            padding: 5rem 0;
        }
        
        .team-photo-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(139, 21, 56, 0.2);
            border: 5px solid var(--gold);
        }
        
        .team-photo-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Trust Factors */
        .trust-section {
            background: var(--white);
            padding: 5rem 0;
        }
        
        .trust-item {
            text-align: center;
            padding: 2rem;
        }
        
        .trust-number {
            font-size: 3.5rem;
            color: var(--burgundy);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .trust-label {
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
            padding: 5rem 0;
            color: var(--white);
        }
        
        .contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .contact-title {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .contact-info {
            font-size: 1.2rem;
            color: var(--white);
        }
        
        .contact-info a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .contact-info a:hover {
            color: var(--gold);
        }
        
        /* Form */
        .contact-form {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }
        
        .form-label {
            color: var(--burgundy);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .form-control {
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 0.8rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--burgundy);
            box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15);
        }
        
        /* Education & Experience Section */
#Education {
    background-color: #f8f9fa;
}

.section-title2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B1538;
    position: relative;
    padding-bottom: 15px;
}

.section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B1538, #6B0F2A);
    border-radius: 2px;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.block-title i {
    color: #8B1538;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8B1538;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8B1538;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #8B1538;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.timeline-content strong {
    color: #8B1538;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.credential-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #8B1538;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
}

.credential-year {
    font-size: 0.9rem;
    color: #8B1538;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.credential-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.reg-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 8px;
}

.specialization {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Experience Highlight */
.experience-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #8B1538 0%, #6B0F2A 100%);
    border-radius: 10px;
    color: white;
}

.experience-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 200px;
}


.skidki .experience-text  {
max-width: 100%;
}

.skidki {
 margin-top: 60px;
}


/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #8B1538;
    color: white;
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.5rem;
    color: #8B1538;
    flex-shrink: 0;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: white;
}

.service-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {

.hero-photo img {
 object-fit: contain;
 object-position: top;
    margin-top: 0px;
}


    .content-block {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .experience-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .experience-number {
        font-size: 4rem;
    }
    
    .experience-text {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .credentials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}
        
        /* Footer */
        footer {
            background: var(--burgundy-dark);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }
        
        .logof {
         display: flex;
         color: #f3ca76;
         align-items: center;
         gap: 15px;
         margin-bottom: 15px;
        }
        
        .logof img {
        width: 50px;
        }
        
        .logof span {
        font-size: 12px;
        text-transform: uppercase;
        display: block;
        }
        
        footer a {
            color: var(--gold-light);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        footer a:hover {
            color: var(--gold);
        }
        
        /* Process Section */
        .process-section {
            padding: 5rem 0;
            background: var(--light-bg);
        }
        
        .process-step {
            position: relative;
            padding: 2rem;
            text-align: center;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
            border: 4px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);
        }
        
        .process-title {
            color: var(--burgundy);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
           
           .btn-small {
           display: block;
           }
           
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .credential-badge {
                display: block;
                margin: 0.5rem 0;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Map Container */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border: 3px solid var(--gold);
        }
 
 
 
    .cookie-popup {
        display: none;
        left: 0px !important;
        right: 0px !important;
        font-size: 12px !important;
        padding: 10px !important;
        width: 100%;
        position: fixed;
        z-index: 100;
        background: #8B1538;
        text-align: center;
        bottom: 0;
    }

    .cookie-popup p {
        margin: 0;
        font-size: 14px;
    }

    .cookie-popup button {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: #6B0F2A;
        color: #fff;
        border: none;
        border-radius: 3px;
        cursor: pointer;
    }
                     
                     
                     .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #000;
}