/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 7.2
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * IMPORTANT: This file is only served on the frontend when `SCRIPT_DEBUG` is enabled;
 * in most instances, the `style.min.css` file will be served. It is not recommended that you
 * use the Theme File Editor to modify this stylesheet. Instead, add the necessary style
 * overrides via "Additional CSS" in the Site Editor.
 */

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/*
 * Prevents unnecessary scrollbars while handling long lines of preformatted text.
 * https://core.trac.wordpress.org/ticket/63875
 */
:where(pre) {
	overflow-x: auto;
}

        :root {
            --primary: #ff3e3e;
            --primary-dark: #e53535;
			--accent: #e63946;
            --dark: #0a0a0a;
            --dark-light: #1a1a1a;
            --gray: #2d2d2d;
            --light: #f8f9fa;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', Arial, sans-serif;

        }

        body {
            background: var(--dark);
            color: var(--light);
            line-height: 1.6;
            font-size: 16px;
             overflow-x: hidden;
            max-width: 100%;
        }
img, video {
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
}
p {
    font-size: 16px;
}

a {
    font-size: 16px;

}


h2 {
text-align:center;
}

.container-bar {

    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* БАЗА */
.mr, .ml, .md, .mu {
    opacity: 0;
    transition: all 1.9s ease;
}

/* LEFT → RIGHT */
.mr {
    transform: translateX(-240px);
}

/* RIGHT → LEFT */
.ml {
    transform: translateX(240px);
}

/* TOP → DOWN (быстро) */
.md {
    transform: translateY(-40px);
    transition: all 0.3s ease;
}

/* BOTTOM → UP */
.mu {
    transform: translateY(160px);
    transition: all 1.3s ease;
}
@media (max-width: 768px) {
    .ml {
        transform: translateY(60px);
    transition: all 1.3s ease;
    }
}

/* АКТИВАЦИЯ */
.show-anim {
    opacity: 1;
    transform: translate(0,0);
}

       /* TOP BAR */
        .top-bar {
    background: var(--dark-light);
    padding: 8px 0;
    font-size: 14px;

        }

        .top-bar a {
            color: #aaa;
            margin-left: 15px;

            transition: var(--transition);
        }

        .top-bar a:hover {
            color: var(--primary);
        }

@media (max-width: 800px) {
   .top-bar {
            display: none;
   }
}
        /* NAV */
        .navbar3 {
    background: #000;
    color: #fff;
    padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {

            width: auto;
            margin: 0 80px !important;
        }
@media (max-width: 800px) {
   .logo {
            margin-left: 10px !important;
   }
}
        .nav-links {
            display: flex;
            gap: 30px;
align-items: center; 
        }

        .navbar2 a {
            color: #fff;

            text-decoration: none;
                
    font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
			margin: 0 10px;
        }

        .navbar2 a:hover {
            color: var(--primary);
        }

        .navbar2 a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }


        .navbar2 a:hover::after {
            width: 100%;
        }

.logo a::after, .wp-block-navigation-submenu a::after, .wp-block-button__link::after {
    display: none;/* убираем underline эффект */
}

@media (max-width: 800px) {
   .nav-btn {
      display: none !important;
   }

}




/* MOBILE */
@media (max-width: 900px) {




    .container-bar {
        position: relative;
    }

    /* ABOUT */
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        width: 100%;
    }



    /* GRID */
  

    /* STATS */
    .stats {
        flex-direction: column;
    }
}

        /* HERO */
        .hero {
            
    display: flex;
    justify-content: flex-start;

            align-items: center;
            position: relative;
            height: 680px;

        }

        .hero3 {
            height: 580px;
            display: flex;
            align-items: center;
            position: relative;
        }
/* HERO VIDEO 
.hero {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    object-position: 50% 10%;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.2), rgba(26,26,26,0.2));
    z-index: -1;
}
*/

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
 
}
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
           
            color: #fff;
        }

        .hero p {
            margin-bottom: 30px;
            line-height: 1.6;
            color: #fff;
            font-size: 18px;
        }

        .btn, .btn-tel {
            background: var(--primary);
            padding: 14px 30px;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
            margin-top: 20px;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 62, 62, 0.4);
        }

@media (max-width: 790px) {
    .hero-content {
        text-align: center;
    }

    .btn, .btn-white {

        width: fit-content;
        margin: 20px auto 0 auto;
    }

    .hero h1 {
        font-size: 44px;
    }
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap;}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: none;
}

.btn-white:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
}
@media (max-width: 790px) {
	.hero-buttons {
		flex-direction: column;
		justify-content:center;		
	}
}
        /* REVIEWS */
        .section {
            padding: 80px 0px;
			overflow: hidden;
                    
        }



 .section-max {
            padding: 0px 60px;
            max-width: 1280px;
            margin: auto;    
	 overflow: hidden;
        }
@media (max-width: 790px) {
.section-max {
            padding: 0px 20px;
	overflow: hidden;
}
	.reviews-description {
		 display: none !important;
	}
}
.section-max h2 {

            margin-bottom: 20px;
            font-size: 48px;
            font-weight: 700;
        }

        .section h2 {

            margin-bottom: 20px;
            font-size: 48px;
            font-weight: 700;
        }

/* REVIEWS */


.reviews-slider {

	    position: relative;
    max-width: 1100px;
    margin: 0 auto;
	
}
.reviews-viewport {
    overflow: hidden;
    width: 100%;
}

        .gr-reviews-widget {
            font-family: Arial, sans-serif;
            max-width: 1100px;
            margin: 30px auto;
            padding: 20px;
            background: var(--gray);
            border-radius: 15px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
			 overflow: hidden;
        }

.gr-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;}
.gr-reviews-widget .gr-title{font-size:22px;font-weight:600;margin:0;}
.gr-rating{display:flex;align-items:center;gap:8px;}
.gr-stars{color:#facc15;font-size:20px;}
.gr-score{font-weight:bold;}
.gr-meta{font-size:14px;color:#666;margin-top:4px;}
.gr-excellent-badge{background:#10b981;color:#fff;padding:3px 8px;border-radius:6px;font-size:12px;}
.gr-view-all{font-size:14px;color:var(--light) !important;text-decoration:none;border:1px solid var(--light);padding:6px 12px;border-radius:6px;}

        .gr-reviews-list {
     display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .gr-card {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
            background: rgba(42, 42, 42, 0.6);
box-shadow: 4px 4px 12px rgba(89, 89, 89, 0.4);
            backdrop-filter: blur(5px);
            transition: var(--transition);
			flex: 0 0 300px; 
        }


        .gr-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 20px;
        }

        .bg-pink { background: #db2777; }
        .bg-purple { background: #7c3aed; }
        .bg-yellow { background: #ca8a04; }
        .bg-green { background: #00a687; }


        .gr-content {
            flex: 1;
        }

        .gr-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .gr-name {
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.gr-google-icon {
    width: 16px;
    height: 16px;
}

.gr-stars {
    color: #facc15;
    font-size: 14px;
}

.gr-text {
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
    color: #e0e0e0;
}

.reviews-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.reviews-btn.left {
    left: -10px;
}

.reviews-btn.right {
    right: -10px;
}

.reviews-btn:hover {
    background: rgba(0,0,0,0.9);
}

/* SERVICES CARDS */

/* SERVICES SECTION */

.services-section {
    background: var(--dark-light);
    padding: 60px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* планшеты */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* телефоны */
@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

/* CARD */

.card {
    display: flex;
    align-items: flex-end;
    height: 480px; /* как ты хотел */
    position: relative;

    border-radius: 14px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px);
}

/* ссылка на всю карточку */
.card-link {
    display: block;
	width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

/* 🔥 ФИКСИРОВАННОЕ затемнение */
.card-overlay {
    position: absolute;
	
    bottom: 0;
    width: 100%;
    height: 45%; /* регулируешь как нужно */
background: rgba(0,0,0,0.8); 

    display: flex;
    align-items: flex-end;
}

/* контент */
.card-content {
    padding: 20px;
    width: 100%;
    text-align: center;
}

/* ссылки */
.card-content a {
    text-decoration: none;
    color: white;
    display: block;
}

/* текст */
.card-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* заголовок */
.card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* кнопка */
.card-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: var(--primary);

    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}


/* hover кнопки */
.card-btn:hover {
    background: #fff;
    transform: scale(1.05);
	color: var(--primary);
}

/* ABOUT SECTION */
.about {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    padding: 80px 60px;
}
@media (max-width: 900px) {
.about {
    padding: 60px 20px;
   }
}
.about img {
    width: 50%;
	max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    align-self: center;
}

.about img:hover {
    transform: scale(1.02);
}

.about > div {
    flex: 1;
}

.why-list {
    list-style: none;
    margin-top: 20px;
}

.why-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list i {
    color: var(--primary);
}


/* COUNT */
.stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 48px;
    color: var(--primary);
}

.stat p {
    color: #aaa;
    margin-top: 10px;
}

/* TINT EXPERTS */

.bg-text {
    position: absolute;
    right: 20px;
    text-align: center;
}

.bg-text p {
    color:#fff;
    font-family: 'Rammetto One', cursive;
    font-size: 120px;
    line-height: 0.9;
    color: transparent;

    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 800px) {
    .bg-text p {
        font-size: 65px;
     }
}



/* HOW IT WORKS */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.how-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.how-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.how-card:hover {
    transform: translateY(-10px);
    background: var(--dark-light);
}

/* LEAD FORM SECTION */
.lead-form {
    padding: 80px 20px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    text-align: center;
}

.lead-container {
    max-width: 600px;
    margin: auto;
}

.lead-form h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.lead-sub {
    color: #aaa;
    margin-bottom: 30px;
	text-align: center;
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box input {
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
}

.form-box input:focus {
    outline: 2px solid var(--primary);
}

.form-box button {
    margin-top: 10px;
    width: 100%;
}

/* WORKS GRID */
  .works h2 {
       padding-bottom: 20px;
}
  .works-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
gap: 2px;

    }

    .works-item {
        aspect-ratio: 1 / 1;
    }

    .big, .small, .wide {
        grid-column: auto;
        grid-row: auto;
    }

/* ITEMS */
.works-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.works-item.show {
    opacity: 1;
    transform: translateY(0);
}

.works-item img,
.works-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER */
.works-item:hover img,
.works-item:hover video {
    transform: scale(1.05);
}



/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 80%;
    max-height: 80%;
    display: block;
    margin: auto;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.3s;
}

.arrow:hover {
    color: var(--primary);
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}
@media (max-width: 800px) {
    .works-item {
    aspect-ratio: 1 / 1;
   }
}

/* BLOG CARDS */
.blog {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    transition: var(--transition);
	    display: flex;
    flex-direction: column;
}

.blog img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
	    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-content p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

.blog-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-date {
    font-size: 12px;
    color: #888;

    margin-top: auto;

}
.blogs {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
/* FAQ */
.faq-item {
    margin-bottom: 20px;
    text-align: left;
    padding: 15px;
    background: var(--gray);
    border-radius: 10px;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--dark-light);
    transform: translateX(10px);
}

/* LOCATIONS */
.locations a {
    margin: 10px;
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.locations a:hover {
    color: white;
    transform: scale(1.1);
}

/* FOOTER */
footer {
    background: var(--dark-light);
    padding: 60px 10px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-premium {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255,0,0,0.08), transparent 30%),
        #090909;

    padding: 100px 20px 35px;

    overflow: hidden;

    border-top: 1px solid rgba(255,255,255,0.06);
}

/* glow */
.footer-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,0,0,0.06);
    filter: blur(120px);

    top: -250px;
    right: -150px;

    pointer-events: none;
}

/* CONTAINER */
.footer-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 70px;

    padding-bottom: 60px;
}

/* BRAND */
.footer-brand h2 {
    color: #fff;
    font-size: 36px;
    line-height: 1;

    margin-bottom: 24px;

    font-family: poppins-black, sans-serif;
    font-weight: 900;

    text-transform: uppercase;
}

.footer-text {
    color: #9e9e9e;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 420px;
}

/* CONTACT */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    color: #d9d9d9;
    font-size: 15px;
}

.footer-item i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-item a {
    color: #d9d9d9;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-item a:hover {
    color: var(--primary);
}

/* COLUMNS */
.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 28px;

    font-weight: 800;
    font-family: poppins-black, sans-serif;
}

/* LINKS */
.footer-col a {
    display: block;

    margin-bottom: 16px;

    color: #a9a9a9;
    text-decoration: none;

    transition: 0.35s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* HOURS */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    color: #bfbfbf;
    font-size: 14px;
}

.hours-item strong {
    color: #fff;
    font-weight: 700;
}

/* BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: 0 auto;

    padding-top: 35px;

    border-top: 1px solid rgba(255,255,255,0.06);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #7f7f7f;
    font-size: 14px;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    gap: 16px;
}

/* SOCIAL BUTTON */
.social-btn {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #ff4fd8,
            #ff3d77,
            #ff6a3d
        );

    box-shadow:
        0 15px 35px rgba(255, 70, 180, 0.25);

    overflow: hidden;

    transition: 0.4s ease;
}

/* GOOGLE */
.google-btn {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #e8e8e8
        );

    color: #111;
}

/* shine */
.social-btn::before {
    content: "";

    position: absolute;
    top: -120%;
    left: -40%;

    width: 180%;
    height: 180%;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255,255,255,0.35),
            transparent 70%
        );

    transform: rotate(25deg);

    transition: 0.8s ease;
}

/* hover */
.social-btn:hover {
    transform: translateY(-5px) scale(1.06);

    box-shadow:
        0 20px 40px rgba(255, 70, 180, 0.4);
}

.social-btn:hover::before {
    top: -20%;
    left: 100%;
}

/* MOBILE */
@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

}

@media (max-width: 768px) {

    .footer-premium {
        padding: 80px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand h2 {
        font-size: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero {

        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about {
        flex-direction: column;
    }

    .about img {
        width: 100%;
    }

    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

:where(.wp-site-blocks :focus) {
    outline-width: none !important;
    outline-style: none !important;
}



/* Убираем max-width у групп */
.wp-block-group {
    max-width: 100% !important;

}
.wp-block-navigation-submenu-mte {
	margin-top: 8px;
}

.navbar2 {
	 padding: 12px 20px !important;
	max-width: 1280px !important;
	margin: 0 auto !important;
}
.section-nav {
   max-width: 1280px !important;
    margin: 0 auto 40px auto !important;
    padding: 0 60px;
    width: 100%;
}
@media (max-width: 780px) {
	.section-nav {
	padding: 0 10px;
	}
}

.nav-main {
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 20px);
    max-width: 500px;

    display: flex;
    justify-content: space-between;
    
    padding: 10px;
    
    background: rgba(20, 20, 20, 1);

    border: 1px solid rgba(255,255,255,0.1);

    z-index: 9999;
}

.mobile-btn, .mobile-btn2 {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    font-size: 16px;
    font-weight: 600;
}
.mobile-bar.show {
    opacity: 1;
    transform: translate(-50%, 0);
    filter: blur(0);
}

.mobile-btn svg, .mobile-btn2 svg {
    width: 24px;
    height: 24px;
    fill: white;
    opacity: 0.9;
	display: block;
}

/* hover (для десктопа если откроешь) */
.mobile-btn:hover, .mobile-btn2:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Скрываем на десктопе */
@media (min-width: 850px) {
    .mobile-bar, .mobile-btn, .mobile-btn2 {
        display: none !important;
    }
}

/* TITNT SECTION */

.tint-section {
  margin: 110px auto;
  padding: 40px 10px;
    background:
    radial-gradient(circle at top left, rgba(255,0,0,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 25%),
    #0d0d0d;

  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tint-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* IMAGE */
.tint-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tint-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.badge {
  background: #ff3c3c;
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 60, 60, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}

.tint-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.tint-content {
  flex: 1;
  color: #fff;
}

.tint-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff3c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.tint-price {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.tint-price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff3c3c, transparent);
}

.tint-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  position: relative;
  padding-left: 15px;
}

.tint-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #ff3c3c, transparent);
  border-radius: 2px;
}

/* BUTTONS */
.tint-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-section {
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s;
}

.btn-section:hover::before {
  left: 100%;
}

/* основная кнопка */
.btn-section.primary {
  background: linear-gradient(135deg, var(--primary), #ff3c3c);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 60, 60, 0.4);
}

.btn-section.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 60, 60, 0.6);
}

/* вторичная */
.btn-section.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-section.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* белая кнопка */
.btn-section.white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 60, 60, 0.2);
  position: relative;
}

.btn-section.white:hover {
  background: #f8f8f8;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 60, 60, 0.3);
}

/* эффекты при наведении для всех кнопок */
.btn-section:hover {
  z-index: 1;
}

/* анимация появления контента */
.tint-content > * {
  opacity: 1;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tint-container:hover .tint-content > * {
  opacity: 1;
  transform: translateX(0);
}

/* задержка для последовательного появления элементов */
.tint-content h2 {
  transition-delay: 0.1s;
}

.tint-price {
  transition-delay: 0.2s;
}

.tint-content p {
  transition-delay: 0.3s;
}

.tint-buttons {
  transition-delay: 0.4s;
}

/* планшеты */
@media (max-width: 1024px) {
  .tint-container {
    gap: 40px;
  }

  .tint-content h2 {
    font-size: 42px;
  }

  .tint-price {
    font-size: 32px;
  }
}

/* мобильные устройства */
@media (max-width: 768px) {
  .tint-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .tint-content h2 {
    font-size: 34px;
    background: linear-gradient(90deg, #ff3c3c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }

  .tint-price {
    font-size: 28px;
    text-align: center;
  }

  .tint-content p {
    max-width: 100%;
    padding-left: 0;
  }

  .tint-content p::before {
    display: none; /* убираем вертикальную линию на мобильных */
  }

  .tint-buttons {
    justify-content: center;
  }

  .btn-section {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  /* убираем анимацию появления на мобильных для лучшей производительности */
  .tint-content > * {
    opacity: 1;
    transform: translateX(0);
  }
}

/* маленькие мобильные устройства */
@media (max-width: 480px) {
  .tint-section {
    padding: 20px 10px;
    margin: 60px auto;
  }

  .tint-container {
    gap: 20px;
  }

  .tint-content h2 {
    font-size: 28px;
  }

  .tint-price {
    font-size: 24px;
  }

  .badge {
    font-size: 10px;
    padding: 6px 16px;
  }
}


/* ADVANTAGE SECTION */

.advantages-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок секции */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(248, 249, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Сетка карточек */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Карточка */
.advantage-card {
  background: var(--dark-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 62, 62, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.7s;
}

.advantage-card:hover::before {
  left: 100%;
}

.advantage-card:hover {
  transform: translateY(-10px);
  background: #222222;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

/* Иконка */
.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: white;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
  transition: var(--transition);
}

.advantage-card:hover .card-icon {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
}

/* Заголовок карточки */
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

/* Описание карточки */
.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.8);
}


/* SECTION INSTAGRAM */

.instagram-section {
  position: relative;
  padding: 120px 20px;
  background: #0a0a0a;
  overflow: hidden;
}

/* TOP */
.instagram-top {
  max-width: 1350px;
  margin: 0 auto 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.insta-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.instagram-top h2 {
  color: #fff;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  font-family: poppins-black, sans-serif;
  font-weight: 900;
}

/* BUTTON */


.insta-btn:hover {
  transform: translateY(-4px);
}

/* WRAPPER */
.insta-slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* SLIDER */
.insta-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;

  scrollbar-width: none;
}

.insta-slider::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.insta-item {
  position: relative;
  min-width: 320px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;

  background: #111;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.4);

  transition: 0.45s ease;
}

/* image */
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

/* overlay */
.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.05)
    );

  transition: 0.4s;
}

/* hover */
.insta-item:hover {
  transform: translateY(-10px);
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover::after {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.1)
    );
}

/* NAVIGATION */
.insta-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 58px;
  height: 58px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  color: #fff;
  font-size: 24px;
  cursor: pointer;

  transition: 0.35s ease;

  border: 1px solid rgba(255,255,255,0.08);
}

.insta-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.insta-nav.prev {
  left: -25px;
}

.insta-nav.next {
  right: -25px;
}

.insta-btn {
  position: relative;

  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  text-decoration: none;
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #ff4fd8,
      #ff3d77,
      #ff6a3d
    );

  box-shadow:
    0 15px 35px rgba(255, 70, 180, 0.35),
    inset 0 1px 1px rgba(255,255,255,0.25);

  overflow: hidden;

  transition: all 0.45s ease;
}

/* glass shine */
.insta-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;

  width: 180%;
  height: 180%;

  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,255,255,0.35),
      transparent 70%
    );

  transform: rotate(25deg);
  transition: 0.8s ease;
}

/* glow */
.insta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  border: 1px solid rgba(255,255,255,0.18);
}

/* icon */
.insta-btn svg {
  position: relative;
  z-index: 2;

  width: 28px;
  height: 28px;

  transition: 0.35s ease;
}

/* hover */
.insta-btn:hover {
  transform: translateY(-6px) scale(1.06);

  box-shadow:
    0 25px 50px rgba(255, 70, 180, 0.5),
    0 0 35px rgba(255, 70, 180, 0.35);
}

.insta-btn:hover::before {
  top: -20%;
  left: 100%;
}

.insta-btn:hover svg {
  transform: scale(1.12);
}

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

  .instagram-section {
    padding: 90px 20px;
  }

  .instagram-top h2 {
    font-size: 40px;
  }

  .insta-item {
    min-width: 270px;
    height: 360px;
  }

  .insta-nav {
    display: none;
  }

}
