/* 
====================================================================
    Extra Widgets Modern Styling
==================================================================== 
*/

/* --- 1. Pricing Widget --- */
.montek-pricing-wrapper {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.pricing-col {
    margin-bottom: 30px;
}

.montek-pricing-card {
    position: relative;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.montek-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.montek-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.montek-pricing-card.is-recommended {
    background: linear-gradient(to bottom, rgba(181, 2, 73, 0.1) 0%, rgba(84, 0, 69, 0.3) 100%);
    border: 1px solid rgba(181, 2, 73, 0.5);
    transform: scale(1.05);
    z-index: 2;
}

.montek-pricing-card.is-recommended:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(181, 2, 73, 1);
    box-shadow: 0 20px 40px rgba(181, 2, 73, 0.2);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #b50249, #540045);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-price {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(#fff, #b50249);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #b50249;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #b50249;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-btn:hover {
    background: linear-gradient(90deg, #b50249, #540045);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 991px) {
    .montek-pricing-card.is-recommended {
        transform: scale(1);
    }
    .montek-pricing-card.is-recommended:hover {
        transform: translateY(-10px);
    }
}


/* --- 2. Process Widget --- */
.montek-process-wrapper {
    position: relative;
    padding: 80px 0;
}

.process-col {
    margin-bottom: 40px;
}

.montek-process-card {
    position: relative;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.montek-process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b50249, #540045);
    transition: width 0.5s ease;
}

.montek-process-card:hover::before {
    width: 100%;
}

.montek-process-card:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
}

.process-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.montek-process-card:hover .process-number {
    color: rgba(181, 2, 73, 0.2);
}

.process-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.process-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}


/* --- 3. Features Grid Widget --- */
.montek-features-wrapper {
    position: relative;
    padding: 80px 0;
}

.feature-col {
    margin-bottom: 30px;
}

.montek-feature-card {
    position: relative;
    background: #111;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
    height: 100%;
}

.montek-feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(181,2,73,0.8) 0%, rgba(84,0,69,0.9) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.montek-feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 50px;
    color: #b50249;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.montek-feature-card:hover .feature-icon {
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

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

.feature-hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.montek-feature-card:hover .feature-hover-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.feature-hover-content p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}


/* --- 4. Image Slider Widget --- */
.montek-slider-wrapper {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.montek-image-swiper {
    position: relative;
    padding-bottom: 60px;
}

.montek-image-swiper .swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.montek-image-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.montek-image-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.montek-slider-wrapper .swiper-pagination {
    bottom: 0 !important;
}

.montek-slider-wrapper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.montek-slider-wrapper .swiper-pagination-bullet-active {
    background: #b50249;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.montek-slider-wrapper .swiper-button-next,
.montek-slider-wrapper .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.montek-slider-wrapper .swiper-button-next:after,
.montek-slider-wrapper .swiper-button-prev:after {
    font-size: 20px;
}

.montek-slider-wrapper .swiper-button-next:hover,
.montek-slider-wrapper .swiper-button-prev:hover {
    background: #b50249;
}

/* --- 5. Services Accordion Widget --- */
.montek-services-accordion-wrapper {
    position: relative;
    padding: 80px 0;
}

.montek-accordion-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.montek-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.montek-accordion-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
}

.montek-acc-number {
    font-size: 14px;
    color: #b50249;
    font-weight: 500;
    margin-right: 50px;
    font-family: monospace;
}

.montek-acc-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.montek-accordion-item:hover .montek-acc-title {
    color: #b50249;
}

.montek-acc-icon {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.montek-accordion-item.active .montek-acc-icon {
    background: #b50249;
    color: #fff;
    border-color: #b50249;
}

.montek-acc-icon .acc-minus {
    display: none;
}

.montek-accordion-item.active .montek-acc-icon .acc-plus {
    display: none;
}

.montek-accordion-item.active .montek-acc-icon .acc-minus {
    display: block;
}

.montek-accordion-content {
    padding-bottom: 40px;
    padding-left: 80px;
}

.montek-accordion-item:not(.active) .montek-accordion-content {
    display: none;
}

.montek-acc-content-inner {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
}

.montek-acc-image img {
    border-radius: 10px;
    width: 100%;
}

.montek-acc-details {
    padding-left: 30px;
}

.montek-acc-inner-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.montek-acc-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.montek-acc-cats .cat-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.montek-cat-tag {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.montek-cat-tag:hover {
    background: #b50249;
    color: #fff;
    border-color: #b50249;
}

/* --- 6. Bento Grid Widget --- */
.montek-bento-wrapper {
    position: relative;
    padding: 80px 0;
}

.bento-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Image Card */
.bento-image-card {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.bento-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    text-align: right;
    z-index: 2;
}

.bento-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
}

.bento-badge .badge-top {
    color: #888;
    margin-bottom: 5px;
}

/* Top Right Text Card */
.bento-text-card {
    margin-bottom: 30px;
}

.bento-title-small {
    color: #b50249;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bento-desc {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Stats Cards */
.bento-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stat-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-num {
    font-size: 12px;
    color: #444;
    font-family: monospace;
}

.stat-value {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}

/* Bottom Card */
.bento-row-bottom {
    margin-top: 30px;
}

.bento-bottom-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.bento-bottom-desc {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .bento-image-card {
        min-height: 350px;
    }
    .bento-bottom-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .bento-image-card {
        min-height: 300px;
    }
    .bento-row-bottom {
        margin-top: 0;
    }
    .bento-text-card {
        margin-bottom: 20px;
    }
    .bento-stats-row {
        margin-bottom: 20px;
    }
    .bento-col-left {
        margin-bottom: 20px !important;
    }
    .bento-stat-card {
        margin-bottom: 20px;
    }
    .bento-stats-row > div:last-child .bento-stat-card {
        margin-bottom: 0;
    }
}


@media (max-width: 551px) {

    .montek-acc-inner-title {
        font-size: 26px;
        margin-top: 20px;
    }

    .montek-acc-details {
        padding-left: 0px;
    }

}

/* --- 7. Hero Slider Widget --- */
.montek-hero-slider-wrapper {
    position: relative;
    width: 100%;
}

.montek-hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.montek-hero-slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.montek-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.montek-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.montek-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b50249;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.montek-hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.montek-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

.montek-hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

/* Animations Triggered on Active Slide */
.swiper-slide-active .montek-hero-subtitle.animated {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.swiper-slide-active .montek-hero-title.animated {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.swiper-slide-active .montek-hero-desc.animated {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.swiper-slide-active .montek-hero-buttons.animated {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls Styling */
.montek-hero-swiper .swiper-button-next,
.montek-hero-swiper .swiper-button-prev {
    color: #fff;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.montek-hero-swiper .swiper-button-next:hover,
.montek-hero-swiper .swiper-button-prev:hover {
    background: #b50249;
    border-color: #b50249;
}

.montek-hero-swiper .swiper-button-next:after,
.montek-hero-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.montek-hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.montek-hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #b50249;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .montek-hero-title { font-size: 60px; }
}
@media (max-width: 767px) {
    .montek-hero-title { font-size: 40px; }
    .montek-hero-desc { font-size: 16px; }
    .montek-hero-buttons { flex-direction: column; }
    .montek-hero-swiper .swiper-button-next,
    .montek-hero-swiper .swiper-button-prev { display: none; }
}

/* --- 8. FAQ Widget --- */
.montek-faq-wrapper {
    padding: 100px 0;
    background-color: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.montek-faq-left {
    position: relative;
    padding-right: 50px;
}

.montek-faq-title {
    font-size: 80px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.montek-faq-title .accent-dot {
    color: #b50249;
}

.montek-faq-desc {
    color: #888;
    font-size: 16px;
    max-width: 300px;
    line-height: 1.6;
}

.montek-faq-float-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: rgba(255, 255, 255, 0.05);
}

.montek-faq-right {
    padding-left: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover .question-text,
.faq-item.active .question-text {
    color: #b50249;
}

.faq-toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.plus-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #555;
    transition: all 0.3s ease;
}

.plus-icon:after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    width: 1px;
    height: 19px;
    background: #555;
    transition: all 0.3s ease;
}

.faq-item.active .plus-icon {
    background: #b50249;
    transform: rotate(180deg);
}

.faq-item.active .plus-icon:after {
    background: #b50249;
    transform: rotate(90deg) scale(0);
}

.faq-answer {
    display: none;
}

.faq-answer-inner {
    padding-bottom: 30px;
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .montek-faq-left {
        padding-right: 15px;
        margin-bottom: 50px;
    }
    .montek-faq-float-icon {
        display: none;
    }
    .montek-faq-right {
        padding-left: 15px;
    }
    .montek-faq-title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .montek-faq-title {
        font-size: 50px;
    }
    .question-text {
        font-size: 18px;
    }
}