/* Urban Sliders CSS */

/* --------- Team Slider Styles --------- */



.teamSwiper {
    width: 235px;
    height: 385px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.teamSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: filter 0.3s, transform 0.3s;
}

.teamSwiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.5) blur(4px);
    pointer-events: none;
    transform: scale(0.9);
}

.teamSwiper .swiper-slide-prev,
.teamSwiper .swiper-slide-next {
    filter: brightness(0.7) blur(3px);
    transform: scale(0.95);
}

.teamSwiper .team-photo {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.teamSwiper .team-info {
    font-family: 'Onest', sans-serif;
    flex: 1;
    background: #C7FF2E;
    color: #1D1F27;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.teamSwiper .team-info .name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.teamSwiper .team-info .role {
    font-weight: 600;
    font-size: 15px;
    opacity: 0.7;
}

.nav-prev-team, 
.nav-next-team,
.nav-prev-pricing,
.nav-next-pricing {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform .3s;
}

.nav-prev-team:hover, 
.nav-next-team:hover,
.nav-prev-pricing:hover,
.nav-next-pricing:hover {
    transform: scale(1.1);
}

.nav-prev-team,
.nav-prev-pricing {
    left: -40px;
}

.nav-next-team,
.nav-next-pricing {
    right: -40px;
}

.nav-prev-team svg, 
.nav-next-team svg,
.nav-prev-pricing svg,
.nav-next-pricing svg {
    width: 24px;
    height: 24px;
    fill: #2c3e50;
}

/* --------- Pricing Slider Styles --------- */
.pricingSwiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
    overflow: visible;
    z-index: 1;
}

/* Modified pricing slider styles to make all cards look the same */
.pricingSwiper .swiper-slide {
    width: 320px;
    height: auto;
    opacity: 1; /* Full opacity for all slides */
    transform: scale(1); /* No scaling difference */
}

/* Remove different styling for active/inactive slides on desktop */
@media (min-width: 1024px) {
    .pricingSwiper .swiper-slide-active,
    .pricingSwiper .swiper-slide-prev,
    .pricingSwiper .swiper-slide-next,
    .pricingSwiper .swiper-slide {
        opacity: 1;
        transform: scale(1);
    }
}

/* Keep the different styling only for mobile/tablet */
@media (max-width: 1023px) {
    .pricingSwiper .swiper-slide {
        transition: transform 0.3s ease;
        opacity: 0.7;
        transform: scale(0.9);
    }
    
    .pricingSwiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }
    
    .pricingSwiper .swiper-slide-prev,
    .pricingSwiper .swiper-slide-next {
        opacity: 0.85;
        transform: scale(0.95);
    }
}

.pricing-card {
    background-color: #161616;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.pricing-card-inner {
    background-color: #161616;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.pricing-header {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-description {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-price {
    font-family: 'Onest', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.pricing-price .period {
    font-size: 16px;
    opacity: 0.7;
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    margin-top: 50px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.feature-check, .feature-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-check svg {
    width: 24px;
    height: 24px;
}

.feature-check circle {
    fill: #C7FF2E;
}

.feature-check path {
    stroke: #000;
    stroke-width: 1.6;
}

.feature-cross {
    color: #666;
    font-size: 18px;
}

.feature-cross svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-button {
    display: inline-block;
    background-color: #C7FF2E;
    color: #1D1F27;
    padding: 20px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Onest', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 0px 24px -5px rgba(195, 252, 44, 0.94) !important;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
}

.pricing-button.premium {
    background-image: linear-gradient(144deg, #E7FFA5 0%, #FF080C 100%);;
    color: #1D1F27;
    box-shadow: 0px 0px 14px -3px #E7FFA5;
}

.pricing-button:hover {
    opacity: 0.9;
}
/* --------- Burger Menu Styles --------- */

/* Fixed Burger Menu Styles */

.mobile-menu-container:after {
        content: "";
        position: absolute;
        top: 50%;
        right: -45%;
        width: 500px;
        height: 500px;
        border-radius: 100%;
        background: radial-gradient(circle, #C7FF2E 0%, rgba(199, 255, 46, 0) 40%);
        filter: blur(160px);
        z-index: 1;
    }

.mobile-menu-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Ensure menu is only shown when active class is present */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}



.burger-button {
    display: none;
    width: 25px;
    height: 29px;
    position: relative;
    cursor: pointer;
    z-index: 15;
}

.burger-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-button span:nth-child(1) {
    top: 0px;
}

.burger-button span:nth-child(2) {
    top: 10px;
}

.burger-button span:nth-child(3) {
    top: 20px;
}

.burger-button.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.burger-button.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger-button.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0E0E0E;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background-color: #161615;
    color: white;
    padding: 20px 40px;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}


.mobile-menu-close {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 5px;
}

.mobile-menu-nav a {
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
    display: block;
}

.mobile-menu-nav a:hover {
    color: #C7FF2E;
}

.mobile-menu-bg-circle {
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 30px solid rgba(199, 255, 46, 0.1);
    z-index: -1;
    pointer-events: none;
}

.burgerMenuSwiper {
    width: 100%;
    height: 100vh;
}



/* Дополнительные исправления для мобильных устройств */
@media (max-width: 767px) {
    .burger-menu {
        width: 90%;
        max-width: none;
    }
    
    .burger-menu-header {
        padding: 15px;
    }
    
    .burger-menu-item {
        font-size: 24px;
        padding: 12px 25px;
    }
    
    /* Предотвращаем перекрытие контентом */
    .burger-menu-container.active {
        z-index: 99999;
    }
}

/* Media Queries for Burger Menu */
@media (max-width: 1024px) {
    .burger-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
}

/*clients slider*/


.clientsSwiper {
      width: 300px;
      height: auto;
    }
.clientsSwiper .swiper-slide-active{
    height:100%;
    padding:20px;
}

.clientsSwiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.5) blur(4px);
    pointer-events: none;
    transform: scale(0.9);
    padding:10px;
}

.clientsSwiper .pricing-button {
    display: flex;
    justify-content:center;
    align-items:center;
    background-color: #C7FF2E;
    text-align:center;
    color: #1D1F27;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 18px 4px rgba(199,255,46,0.56) !important;
    width:100%;
}

/* New CSS for Pricing Modals & Accordions */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.pricing-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.pricing-modal {
    background-color: #161616;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    margin: 30px auto;
    overflow: hidden;
    display: none;
    max-height: 90vh;
    overflow-y: auto;
}

.pricing-modal.active {
    display: block;
    animation: modalAppear 0.3s forwards;
}

@keyframes modalAppear {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.pricing-modal-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-modal-title {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.pricing-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.pricing-modal-close:hover {
    background-color: rgba(255,255,255,0.2);
}

.pricing-modal-close svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.pricing-modal-body {
    padding: 30px;
}

.pricing-accordion-container {
    margin-bottom: 30px;
}

.pricing-accordion {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.pricing-accordion:hover {
    transform: translateY(-2px);
}

.pricing-accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-accordion-title-container {
    flex: 1;
}

.pricing-accordion-title {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.pricing-accordion-price {
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-accordion-price .period {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.pricing-accordion-description {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

.pricing-accordion-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s;
}

.pricing-accordion-arrow svg {
    fill: white;
    transition: transform 0.3s;
}

.pricing-accordion.active .pricing-accordion-arrow svg {
    transform: rotate(180deg);
}

.pricing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.2);
}

.pricing-accordion.active .pricing-accordion-content {
    max-height: 500px;
    overflow-y: auto;
    transition: max-height 0.5s ease-in;
}

.pricing-accordion-features {
    padding: 20px;
    list-style: none;
    margin: 0;
}

.pricing-accordion-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    color: #fff;
}

.pricing-accordion-features .feature-check {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-accordion-features .feature-check svg {
    width: 24px;
    height: 24px;
}

.modal-contact-btn {
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 15px;
}

/* Gradient backgrounds for accordions */
.pricing-accordion.gradient-pink {
    background: #3b553b;
    /*background: linear-gradient(135deg, #FF4D9E 0%, #A544FF 100%);*/
}

.pricing-accordion.gradient-blue {
    background: #3a3d58;
    /*background: linear-gradient(135deg, #37C9FF 0%, #3768FF 100%);*/
}

.pricing-accordion.gradient-gold {
    background: #663838;
    /*background: linear-gradient(135deg, #FFCB37 0%, #FF8A37 100%);*/
}

.pricing-accordion.social-media{
    background: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-modal {
        width: 95%;
        margin: 20px auto;
    }
    
    .pricing-accordion-title {
        font-size: 20px;
    }
    
    .pricing-accordion-price {
        font-size: 28px;
    }
    
    .pricing-modal-header {
        padding: 15px 20px;
    }
    
    .pricing-modal-body {
        padding: 20px;
    }
    
    .pricing-accordion-header {
        padding: 15px;
    }
}

body.modal-open {
    overflow: hidden;
}

/* Nested Accordions for Media modal */
.nested-accordions {
    padding: 15px;
    overflow-y: auto;
}

.nested-accordion {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.nested-accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nested-accordion-title-container {
    flex: 1;
}

.nested-accordion-title {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.nested-accordion-price {
    font-family: 'Onest', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.nested-accordion-description {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.nested-accordion-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s;
}

.nested-accordion-arrow svg {
    fill: white;
    transition: transform 0.3s;
}

.nested-accordion.active .nested-accordion-arrow svg {
    transform: rotate(180deg);
}

.nested-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.2);
}

.nested-accordion.active .nested-accordion-content {
    max-height: 400px;
    overflow-y: auto;
    transition: max-height 0.5s ease-in;
}



/* Gradient backgrounds for nested accordions */
.exlusive-gradient{
    background: linear-gradient(333deg, rgb(196 0 205) 0%, rgb(123 46 255) 100%);
}

.nested-gradient-pink {
    background: #3b553b;
    /*background: linear-gradient(135deg, #FF4D9E 0%, #A544FF 100%);*/
}

.nested-gradient-blue {
     background: #3a3d58;
    /*background: linear-gradient(135deg, #37C9FF 0%, #3768FF 100%);*/
}

.nested-gradient-gold {
     background: #663838;
    /*background: linear-gradient(135deg, #FFCB37 0%, #FF8A37 100%);*/
}