/* Home page custom styles */

/* ============================================ */
/* SLIDER BOTTOM SECTION - React Bits Style */
/* ============================================ */

/* Fiyat Teklifi Al Button - Aurora Glow Effect */
.main-slider-two__price-quote-box {
    position: relative;
    display: inline-block;
}

.main-slider-two__price-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 210, 93, 0.12) 0%, rgba(251, 146, 60, 0.08) 50%, rgba(255, 210, 93, 0.12) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid transparent;
    background-clip: padding-box;
    padding: 14px 28px;
    border-radius: 60px;
    color: #FFD25D;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 210, 93, 0.3),
        0 4px 20px -4px rgba(255, 210, 93, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gradient Border Animation */
.main-slider-two__price-quote-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFD25D, #fb923c, #f59e0b, #FFD25D);
    background-size: 300% 300%;
    border-radius: 62px;
    z-index: -2;
    animation: gradient-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-slider-two__price-quote-btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.95) 0%, rgba(11, 25, 44, 0.9) 100%);
    border-radius: 58px;
    z-index: -1;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shimmer Effect on Hover */
.main-slider-two__price-quote-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 0 1px rgba(255, 210, 93, 0.5),
        0 8px 30px -4px rgba(255, 210, 93, 0.4),
        0 0 60px -10px rgba(255, 210, 93, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #fff;
}

.main-slider-two__price-quote-btn:hover::before {
    opacity: 1;
}

.main-slider-two__price-quote-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Icon with Spark Animation */
.main-slider-two__price-quote-icon {
    font-size: 18px;
    display: inline-flex;
    position: relative;
    animation: spark-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 210, 93, 0.6));
}

@keyframes spark-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 6px rgba(255, 210, 93, 0.6));
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
        filter: drop-shadow(0 0 10px rgba(255, 210, 93, 0.8));
    }
    50% { 
        transform: scale(1.15) rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 210, 93, 1));
    }
    75% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 10px rgba(255, 210, 93, 0.8));
    }
}

.main-slider-two__price-quote-text {
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 13px;
    background: linear-gradient(135deg, #FFD25D 0%, #fff 50%, #FFD25D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 3s linear infinite;
}

@keyframes text-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Brand Arrow Divider - Floating Animation */
.brand-arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.divider-arrow {
    position: relative;
    animation: float-bounce 2.5s ease-in-out infinite;
}

.divider-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 210, 93, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 2.5s ease-in-out infinite;
}

.divider-arrow svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 8px rgba(255, 210, 93, 0.4));
    position: relative;
    z-index: 1;
}

@keyframes float-bounce {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(8px);
    }
}

@keyframes glow-pulse {
    0%, 100% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Brand Two - Desktop Original Style */
.brand-two__wrapper {
    position: relative;
}

/* Brand Logo Hover Effects - Desktop */
.brand-two__single {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-two__single:hover {
    transform: translateY(-3px) scale(1.05);
}

.brand-two__single:hover .brand-two__img img {
    opacity: 1 !important;
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(255, 210, 93, 0.3));
}

/* Slider Mobile - Image ends above brand-two */
@media (max-width: 991px) {
    .main-slider-two {
        position: relative;
        padding-bottom: 90px; /* Space for brand-two */
    }
    
    .main-slider-two .swiper-slide {
        padding-bottom: 90px;
    }
    
    .main-slider-two__bg {
        bottom: 90px !important; /* Image stops above brand-two */
    }
}

/* Brand Two Mobile Layout - Only for Mobile with DotGrid Effect */
@media (max-width: 991px) {
    .brand-two {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: linear-gradient(to top, rgba(11, 25, 44, 1) 0%, rgba(11, 25, 44, 0.95) 50%, rgba(11, 25, 44, 0.8) 100%);
    }
    
    .brand-two__inner {
        position: relative;
        overflow: hidden;
    }
    
    /* Top accent line - centered above divider */
    .brand-two__inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 210, 93, 0.5) 30%,
            rgba(255, 210, 93, 0.8) 50%,
            rgba(255, 210, 93, 0.5) 70%,
            transparent 100%);
    }
    
    /* Bottom subtle line */
    .brand-two__inner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 5%;
        right: 5%;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%);
    }
    
    /* Vertical divider between button and logos */
    .brand-two__left {
        position: relative;
    }
    
    .brand-two__left::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 210, 93, 0.3) 20%,
            rgba(255, 210, 93, 0.5) 50%,
            rgba(255, 210, 93, 0.3) 80%,
            transparent 100%);
    }
    
    /* Corner accents */
    .brand-two__wrapper::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        width: 20px;
        height: 20px;
        border-left: 1px solid rgba(255, 210, 93, 0.3);
        border-top: 1px solid rgba(255, 210, 93, 0.3);
        z-index: 10;
    }
    
    .brand-two__wrapper::after {
        content: '';
        position: absolute;
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        border-right: 1px solid rgba(255, 210, 93, 0.3);
        border-top: 1px solid rgba(255, 210, 93, 0.3);
        z-index: 10;
    }
    
    .brand-two__wrapper {
        position: relative;
        overflow: hidden;
    }
    
    /* DotGrid Canvas - Mobile Only */
    .dotgrid-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    
    .brand-two__inner {
        position: relative;
        z-index: 1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 16px 20px;
        margin-left: 0;
        background: rgba(11, 25, 44, 0.7) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-top: 1px solid rgba(82, 39, 255, 0.3);
    }
    
    .brand-two__left {
        display: flex;
        justify-content: flex-start;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }
    
    /* Ok'u gizle - sadece mobilde */
    .brand-arrow-divider {
        display: none !important;
    }
    
    .brand-two__right {
        flex: 1;
        max-width: 65%;
        position: relative;
        z-index: 2;
    }
    
    .brand-two__carousel {
        padding: 0;
    }
    
    .brand-two__img {
        height: 50px !important;
    }
}

/* Hide DotGrid on Desktop */
@media (min-width: 992px) {
    .dotgrid-canvas {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .brand-two__inner {
        flex-direction: row;
        gap: 18px;
        padding: 14px 16px;
        background: rgba(11, 25, 44, 0.55) !important;
    }
    
    .brand-two__left {
        flex-shrink: 0;
    }
    
    /* Buton - Daha Büyük */
    .main-slider-two__price-quote-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
        border-radius: 30px;
    }
    
    .main-slider-two__price-quote-btn::before {
        border-radius: 32px;
    }
    
    .main-slider-two__price-quote-btn::after {
        border-radius: 29px;
    }
    
    .main-slider-two__price-quote-icon {
        font-size: 14px;
    }
    
    .main-slider-two__price-quote-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .brand-two__right {
        flex: 1;
        max-width: 60%;
    }
    
    .brand-two__img {
        height: 42px !important;
        padding: 3px !important;
    }
    
    .brand-two__carousel .owl-item {
        padding: 0 6px;
    }
}

@media (max-width: 576px) {
    .brand-two__inner {
        gap: 15px;
        padding: 12px 14px;
        background: rgba(11, 25, 44, 0.6) !important;
    }
    
    .main-slider-two__price-quote-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 7px;
        border-radius: 25px;
    }
    
    .main-slider-two__price-quote-btn::before {
        border-radius: 27px;
    }
    
    .main-slider-two__price-quote-btn::after {
        border-radius: 24px;
    }
    
    .main-slider-two__price-quote-icon {
        font-size: 13px;
    }
    
    .main-slider-two__price-quote-text {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .brand-two__right {
        max-width: 55%;
    }
    
    .brand-two__img {
        height: 38px !important;
    }
    
    .brand-two__carousel .owl-item {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .brand-two__inner {
        gap: 12px;
        padding: 10px 12px;
        background: rgba(11, 25, 44, 0.65) !important;
    }
    
    .main-slider-two__price-quote-btn {
        padding: 9px 14px;
        font-size: 11px;
        gap: 6px;
    }
    
    .main-slider-two__price-quote-icon {
        font-size: 12px;
    }
    
    .main-slider-two__price-quote-text {
        font-size: 10px;
    }
    
    .brand-two__right {
        max-width: 50%;
    }
    
    .brand-two__img {
        height: 32px !important;
        padding: 2px !important;
    }
    
    .brand-two__carousel .owl-item {
        padding: 0 4px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .brand-two__inner {
        padding: 8px 10px;
        gap: 10px;
        background: rgba(11, 25, 44, 0.7) !important;
    }
    
    .main-slider-two__price-quote-btn {
        padding: 8px 12px;
        font-size: 10px;
        gap: 5px;
    }
    
    .main-slider-two__price-quote-icon {
        font-size: 11px;
    }
    
    .main-slider-two__price-quote-text {
        font-size: 9px;
    }
    
    .brand-two__right {
        max-width: 45%;
    }
    
    .brand-two__img {
        height: 28px !important;
    }
}

/* ============================================ */
/* Brand Two Görsel Boyutları - Düzenli ve Responsive */
/* ============================================ */
.brand-two__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    padding: 10px;
}

.brand-two__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    opacity: 1;
    transition: all 500ms ease;
}

.brand-two__single:hover .brand-two__img img {
    opacity: 0.7;
    transform: scale(1.05);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .brand-two__img {
        height: 70px;
        padding: 8px;
    }
}

@media (max-width: 767px) {
    .brand-two__img {
        height: 60px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .brand-two__img {
        height: 50px;
        padding: 5px;
    }
}

/* Services counter adjustments */
.services-two__count::after {
    content: attr(data-number) !important;
}

.services-two__services-list-inner li p .service-check-icon-wrapper {
    display: inline-block;
}

.services-two__services-list-inner li p .service-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Modern Pricing Section */
.modern-pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.modern-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-category-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-toggle-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-toggle-btn:hover {
    color: #fff;
}

.category-toggle-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.pricing-cards-wrapper {
    position: relative;
}

.pricing-category-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.pricing-category-content.active {
    display: block;
}

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

.modern-pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.modern-pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modern-pricing-card.featured {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.modern-pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -8px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.popular-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    border: 4px solid transparent;
    border-top-color: #b8960f;
    border-right-color: #b8960f;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #d4af37;
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.tax-info {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.plan-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pricing-card-body {
    flex: 1;
    padding: 0;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
}

.features-list li.included .feature-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.features-list li.not-included .feature-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.feature-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}

.features-list li.not-included .feature-text {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pricing-card-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.select-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.select-plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.select-plan-btn.featured-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    color: #0a1628;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.select-plan-btn.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: #0a1628;
}

.no-packages-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .modern-pricing-section {
        padding: 70px 0;
    }

    .modern-pricing-card.featured {
        transform: none;
    }

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

    .price-amount {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .pricing-category-toggle {
        flex-wrap: wrap;
        border-radius: 16px;
        gap: 6px;
    }

    .category-toggle-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .modern-pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 38px;
    }

    .plan-name {
        font-size: 18px;
    }
}

/* Blog Two Featured Card Tweaks */
.blog-two__left-content-box .blog-two__single {
    padding: 20px 24px;
    border-radius: 36px;
    margin-bottom: 40px;
}

.blog-two__left-content-box .blog-two__img {
    aspect-ratio: 16 / 11;
    border-radius: 28px;
    overflow: hidden;
}

.blog-two__left-content-box .blog-two__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-two__left-content-box .blog-two__content {
    margin-top: 34px;
    padding-left: 64px;
}

.blog-two__left-content-box .blog-two__user {
    top: 70px;
    left: -70px;
}

.blog-two__left-content-box .blog-two__text {
    display: block;
    min-height: auto;
}

@media (max-width: 991px) {
    .blog-two__left-content-box .blog-two__content {
        padding-left: 56px;
    }

    .blog-two__left-content-box .blog-two__user {
        left: -60px;
    }
}

/* Bubble Pricing Section CSS */
.bubble-pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0B192C 0%, #1a2f4a 50%, #0B192C 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.pricing-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 210, 93, 0.08);
    backdrop-filter: blur(10px);
    animation: float-bubble 20s infinite ease-in-out;
    pointer-events: none;
}

.pricing-bubble-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pricing-bubble-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.pricing-bubble-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

.pricing-bubble-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.pricing-bubble-5 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

.pricing-bubble-6 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(50px, -30px) scale(1.05);
        opacity: 0.6;
    }
}

.bubble-pricing-section .container {
    position: relative;
    z-index: 2;
}

.pricing-toggle-container {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-toggle-bubble {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.toggle-btn-bubble {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.toggle-btn-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 210, 93, 0.2);
    border-radius: 50%;
    transition: width 0.4s ease-out, height 0.4s ease-out, top 0.4s ease-out, left 0.4s ease-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.toggle-btn-bubble.active {
    background: linear-gradient(135deg, #FFD25D 0%, #f59e0b 100%);
    color: #0B192C;
    box-shadow: 0 5px 20px rgba(255, 210, 93, 0.3);
}

.toggle-btn-bubble:hover:not(.active) {
    color: #FFD25D;
}

.toggle-btn-bubble:hover:not(.active)::before {
    width: 300%;
    height: 300%;
}

.bubble-pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.bubble-pricing-grid.active {
    display: grid;
}

.bubble-pricing-grid.active:has(.bubble-pricing-card:nth-child(1):nth-last-child(1)) {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.bubble-pricing-grid.active:has(.bubble-pricing-card:nth-child(1):nth-last-child(2)) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.bubble-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bubble-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 210, 93, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bubble-pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 210, 93, 0.3);
    box-shadow: 0 20px 60px rgba(255, 210, 93, 0.2);
}

.bubble-pricing-card:hover::before {
    opacity: 1;
}

.bubble-pricing-card.premium {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 210, 93, 0.4);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 210, 93, 0.25);
}

.bubble-pricing-card.premium:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 24px 70px rgba(255, 210, 93, 0.35);
}

.popular-badge-bubble {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 210, 93, 0.4);
    animation: pulse-badge 2s infinite;
    white-space: nowrap;
}

.popular-badge-bubble i {
    font-size: 10px;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.bubble-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bubble-card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.bubble-plan-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFD25D;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bubble-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.bubble-currency {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.bubble-price {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.bubble-period {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 4px;
}

.bubble-tax-badge {
    display: inline-block;
    background: rgba(255, 210, 93, 0.15);
    color: #FFD25D;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 210, 93, 0.3);
}

.bubble-plan-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.bubble-card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bubble-features-list {
    margin-bottom: 30px;
    text-align: left;
    flex: 1;
}

.bubble-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px 0;
}

.bubble-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bubble-feature-icon.included {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.bubble-feature-icon.not-included {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.bubble-feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.bubble-feature-item:has(.not-included) .bubble-feature-text {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.bubble-choose-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bubble-choose-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 210, 93, 0.2);
    border-radius: 50%;
    transition: width 0.6s ease-out, height 0.6s ease-out, top 0.6s ease-out, left 0.6s ease-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.bubble-choose-btn:hover {
    color: #0B192C;
    background: linear-gradient(135deg, #FFD25D 0%, #f59e0b 100%);
    border-color: #FFD25D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 210, 93, 0.4);
}

.bubble-choose-btn:hover::before {
    width: 300%;
    height: 300%;
}

.bubble-choose-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bubble-choose-btn:hover i {
    transform: translateX(4px);
}

.bubble-choose-btn.premium-btn {
    background: linear-gradient(135deg, #FFD25D 0%, #f59e0b 100%);
    color: #0B192C;
    border-color: #FFD25D;
    box-shadow: 0 5px 20px rgba(255, 210, 93, 0.3);
}

.bubble-choose-btn.premium-btn:hover {
    box-shadow: 0 12px 40px rgba(255, 210, 93, 0.5);
}

@media (max-width: 991px) {
    .bubble-pricing-grid.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bubble-pricing-grid.active:has(.bubble-pricing-card:nth-child(1):nth-last-child(1)) {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .bubble-pricing-card.premium {
        transform: none;
    }

    .bubble-pricing-card.premium:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 767px) {
    .bubble-pricing-section {
        padding: 80px 0;
    }

    .bubble-pricing-grid.active {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bubble-pricing-grid.active:has(.bubble-pricing-card:nth-child(1):nth-last-child(1)),
    .bubble-pricing-grid.active:has(.bubble-pricing-card:nth-child(1):nth-last-child(2)) {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .bubble-pricing-card.premium {
        transform: none;
    }

    .bubble-pricing-card.premium:hover {
        transform: translateY(-12px);
    }

    .pricing-toggle-bubble {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .toggle-btn-bubble {
        border-radius: 12px;
        margin: 2px 0;
    }

    .bubble-card-inner {
        padding: 30px 20px;
    }

    .bubble-plan-title {
        font-size: 24px;
    }

    .bubble-price {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .bubble-pricing-section {
        padding: 60px 0;
    }

    .bubble-card-inner {
        padding: 25px 18px;
    }

    .bubble-plan-title {
        font-size: 20px;
    }

    .bubble-price {
        font-size: 40px;
    }

    .bubble-feature-text {
        font-size: 13px;
    }
}

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

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

.select-plan-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.6);
    color: white;
    background: linear-gradient(135deg, #cc0000 0%, #ff0000 50%, #ff3333 100%);
}

.select-plan-btn i {
    margin-left: 10px;
    transition: transform 0.4s ease;
    font-size: 14px;
}

.select-plan-btn:hover i {
    transform: translateX(8px) rotate(15deg);
}

@media (max-width: 991px) {
    .pricing-toggle {
        width: 400px;
    }

    .toggle-btn {
        padding: 11px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .category-card-mini {
        padding: 15px;
    }

    .category-icon-wrapper-mini {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .category-icon-wrapper-mini i {
        font-size: 16px;
    }

    .category-name-mini {
        font-size: 14px;
    }

    .pricing-two {
        padding: 80px 0;
    }

    .pricing-two .section-title__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .pricing-two .section-title__tagline {
        font-size: 14px;
    }

    .pricing-categories-section {
        margin-bottom: 30px;
    }

    .pricing-two__inner {
        margin-top: 30px;
    }

    .pricing-two__single {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .pricing-two__sub-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pricing-two__price {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .pricing-two__text {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .pricing-two__points-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .pricing-two__points li {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .pricing-two__points li .icon {
        margin-right: 10px;
    }

    .pricing-two__btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .pricing-two__inner .col-12 {
        width: 100%;
        max-width: 100%;
    }

    .pricing-two__single {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px;
    }

    .refresh-overlay {
        border-radius: 15px;
    }

    .refresh-spinner {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-two__single {
        padding: 25px 20px;
    }

    .pricing-two__price {
        font-size: 32px;
    }

    .pricing-two__points li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-two {
        padding: 60px 0;
    }

    .pricing-two .section-title__title {
        font-size: 20px;
    }

    .pricing-two .section-title__tagline {
        font-size: 13px;
    }

    .category-card-mini {
        padding: 12px;
        margin-bottom: 10px;
    }

    .category-icon-wrapper-mini {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .category-icon-wrapper-mini i {
        font-size: 14px;
    }

    .category-name-mini {
        font-size: 12px;
    }

    .pricing-two__single {
        padding: 15px 12px;
        margin-bottom: 15px;
    }

    .pricing-two__price {
        font-size: 24px;
    }

    .pricing-two__text {
        font-size: 12px;
    }

    .pricing-two__points li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pricing-two__btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .pricing-toggle {
        width: 320px;
        flex-direction: column;
    }

    .toggle-btn {
        padding: 10px 14px;
        font-size: 13px;
        margin: 2px 0;
    }

    .refresh-spinner {
        width: 50px;
        height: 50px;
    }
}

.refresh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(102, 126, 234, 0.1) 100%);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.2);
}

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

.refresh-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--webionza-base);
    border-right: 3px solid #FFB800;
    border-bottom: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fas,
.fa,
i[class*="fas"],
i[class*="fa"] {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}

.far,
i[class*="far"] {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    display: inline-block !important;
}

.fab,
i[class*="fab"] {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    display: inline-block !important;
}

.pricing-card .fas,
.pricing-card .fa,
.pricing-card i[class*="fas"],
.pricing-card i[class*="fa"] {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 8px !important;
    list-style: none !important;
}

.feature-icon {
    flex-shrink: 0 !important;
    width: 16px !important;
    text-align: center !important;
}

.feature-text {
    flex: 1 !important;
    margin-left: 8px !important;
}

.special-offer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 20px !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 12px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.special-offer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.special-offer:hover::before {
    left: 100% !important;
}

.special-offer:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
}

.special-offer span:first-child {
    color: #FFD700 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-right: 10px !important;
    animation: pulse 2s infinite !important;
}

.special-offer span:last-child {
    color: #FFD700 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pricing-two__single.refreshing {
    animation: refreshPulse 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 15px;
    overflow: hidden;
}

@keyframes refreshPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: brightness(1);
        border-radius: 15px;
    }
    25% {
        transform: scale(0.98) rotate(1deg);
        opacity: 0.8;
        filter: brightness(0.9);
        border-radius: 12px;
    }
    50% {
        transform: scale(0.95) rotate(0deg);
        opacity: 0.6;
        filter: brightness(0.8);
        border-radius: 10px;
    }
    75% {
        transform: scale(0.98) rotate(-1deg);
        opacity: 0.8;
        filter: brightness(0.9);
        border-radius: 12px;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: brightness(1);
        border-radius: 15px;
    }
}

.refresh-overlay.active ~ .pricing-two__single {
    filter: blur(8px);
    transition: filter 0.4s ease;
}

/* Portfolio Mobile Optimization */
.portfolio-mobile-grid {
    margin-top: 40px;
}

.portfolio-mobile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-mobile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(61, 114, 252, 0.5);
}

.portfolio-mobile-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-mobile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-mobile-card:hover .portfolio-mobile-card__image img {
    transform: scale(1.05);
}

.portfolio-mobile-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 114, 252, 0.9), rgba(92, 176, 233, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-mobile-card:hover .portfolio-mobile-card__overlay {
    opacity: 1;
}

.portfolio-mobile-card__link {
    color: white;
    font-size: 24px;
    text-decoration: none;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-mobile-card__link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.portfolio-mobile-card__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-mobile-card__title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.portfolio-mobile-card__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-mobile-card__title a:hover {
    color: #3D72FC;
}

.portfolio-mobile-card__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.portfolio-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3D72FC, #5CB0E9);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(61, 114, 252, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.portfolio-mobile-btn::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.5s ease;
}

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

.portfolio-mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(61, 114, 252, 0.4);
    color: white;
    text-decoration: none;
}

.portfolio-mobile-btn i {
    transition: transform 0.3s ease;
}

.portfolio-mobile-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .portfolio-two {
        padding: 60px 0;
    }

    .section-title__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title__title br {
        display: none;
    }

    .portfolio-mobile-card__content {
        padding: 16px;
    }

    .portfolio-mobile-card__title {
        font-size: 16px;
    }

    .portfolio-mobile-card__text {
        font-size: 13px;
    }

    .portfolio-mobile-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .portfolio-two {
        padding: 40px 0;
    }

    .section-title__title {
        font-size: 24px;
    }

    .portfolio-mobile-card__content {
        padding: 14px;
    }

    .portfolio-mobile-card__title {
        font-size: 15px;
    }

    .portfolio-mobile-card__text {
        font-size: 12px;
    }

    .portfolio-mobile-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-mobile-card__image {
        aspect-ratio: 4/3;
    }
}

@media (prefers-color-scheme: dark) {
    .portfolio-mobile-card {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

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

.portfolio-mobile-card {
    animation: fadeInUp 0.6s ease-out;
}

.portfolio-mobile-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-mobile-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-mobile-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-mobile-card:nth-child(4) { animation-delay: 0.4s; }
.portfolio-mobile-card:nth-child(5) { animation-delay: 0.5s; }
.portfolio-mobile-card:nth-child(6) { animation-delay: 0.6s; }
