/* Free Trial Card CSS */
.free-trial-horizontal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d1bae 0%, #4c38fc 100%);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(45, 27, 174, 0.25);
    margin-top: 50px;
    margin-bottom: 40px;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.free-trial-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.35);
}

.free-trial-section {
    display: none; /* Hide the original large section */
}

.free-trial-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.free-trial-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.free-trial-horizontal-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 30px;
}

.free-trial-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.free-trial-time-container {
    margin-right: 30px;
    position: relative;
    min-width: 100px;
}

.free-trial-content {
    color: white;
    flex: 1;
}

.free-trial-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-white 2s infinite;
}

.free-trial-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
}

.free-trial-title span {
    color: #FF512F;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.free-trial-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 81, 47, 0.3);
    border-radius: 10px;
    z-index: -1;
}

.free-trial-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.free-trial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}

.free-trial-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
}

.free-trial-feature i {
    margin-right: 8px;
    color: #86ff8b;
    font-size: 14px;
}

.free-trial-right {
    flex: 0 0 auto;
    margin-left: 20px;
}

.free-trial-cta {
    text-align: center;
}

.free-trial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2d1bae;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.free-trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    transition: all 0.3s ease;
    z-index: 1;
}

.free-trial-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.free-trial-btn:hover::before {
    transform: scale(1.1);
    opacity: 0;
}

.free-trial-btn i {
    margin-left: 10px;
}

/* Already defined above in a different position */

.free-trial-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(45, 27, 174, 0.3);
    animation: float 3s infinite ease-in-out;
    z-index: 10;
}

.free-trial-time-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #2d1bae;
    margin-bottom: 0;
}

.free-trial-time-text {
    font-size: 12px;
    font-weight: 700;
    color: #2d1bae;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-trial-image-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.decoration-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 40px;
    animation: float 4s infinite ease-in-out;
    animation-delay: 0.5s;
}

.decoration-2 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 80px;
    animation: float 3s infinite ease-in-out;
    animation-delay: 1s;
}

.decoration-3 {
    width: 40px;
    height: 40px;
    bottom: 80px;
    left: 30px;
    animation: float 5s infinite ease-in-out;
    animation-delay: 1.5s;
}

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

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

.free-trial-time-animate {
    animation: zoomInOut 3s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .free-trial-horizontal-inner {
        flex-direction: column;
        padding: 25px 15px;
    }
    
    .free-trial-left {
        flex-direction: column;
        text-align: center;
    }
    
    .free-trial-time-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .free-trial-content {
        text-align: center;
    }
    
    .free-trial-title {
        font-size: 24px;
    }
    
    .free-trial-description {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .free-trial-features {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .free-trial-right {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .free-trial-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .free-trial-horizontal {
        margin-bottom: 30px;
    }

    .free-trial-horizontal-inner {
        padding: 20px 15px;
    }

    .free-trial-title {
        font-size: 22px;
    }

    .free-trial-feature {
        font-size: 13px;
        margin-right: 10px;
    }

    .free-trial-time {
        width: 80px;
        height: 80px;
    }

    .free-trial-time-number {
        font-size: 32px;
    }

    .free-trial-time-text {
        font-size: 12px;
    }

    .free-trial-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .free-trial-horizontal-inner {
        padding: 20px 15px;
    }
    
    .free-trial-title {
        font-size: 20px;
    }

    .free-trial-description {
        font-size: 13px;
    }

    .free-trial-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .free-trial-feature {
        margin-right: 0;
    }

    .free-trial-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .free-trial-time {
        width: 70px;
        height: 70px;
    }

    .free-trial-time-number {
        font-size: 28px;
    }

    .free-trial-time-text {
        font-size: 11px;
    }
}
