.apply-btn {
	width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    border: none;
    padding: 20px 20px;
    margin: 10px 0;
    transform: translateX(-40px);
    cursor: pointer;
}

.apply-btn:focus,
.tab-btn:focus {
    outline: none;
    border: none;
}

.apply-btn:hover {
    opacity: 0.8;
}

#standard-btn {
    background-color: #fff;
    color: #3bafda;
    border: 4px solid;
}

#premium-btn {
    color: #fff;
}

.apply-btn i {
	margin-right: 5px;
}

/* Hover-based menu button for small and medium screens */
.apply-hover-menu {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.apply-hover-menu.scrolled {
    bottom: 75px;
    right: 15px;
    transform: scale(0.9);
}

.apply-hover-toggle {
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.apply-hover-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.apply-hover-menu.scrolled .apply-hover-toggle {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.apply-hover-toggle i {
    font-size: 20px;
}

/* Hover dropdown menu */
.apply-hover-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.apply-hover-menu:hover .apply-hover-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.apply-hover-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 5px 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    text-align: left;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.apply-hover-item:hover {
    background-color: rgba(52, 144, 220, 0.1);
    color: #333;
    text-decoration: none;
}

.apply-hover-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.apply-hover-item.standard {
    color: #3bafda;
}

.apply-hover-item.standard i {
    color: #3bafda;
}

.apply-hover-item.premium {
    color: #fff;
    background-color: #3bafda;
    border-radius: 8px;
}

.apply-hover-item.premium:hover {
    background-color: #3490dc !important;
    color: #fff;
}

.tab-btn {
	background-color: #3bafda;
	color: #fff;
	border: none;
	border-radius: 8px 8px 0 0;
	padding: 10px 20px;
	cursor: pointer;
	box-sizing: border-box;
}

.tab-btn.active {
    background-color: #fff;
    color: #3bafda;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    pointer-events: none;
}

.tab-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
}

.tab-content {
    background-color: #fff;
    padding: 40px 60px;;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
    background-color: #fff;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-pane h3 {
	font-weight: bold;
}

.tab-pane hr {
    margin-bottom: 30px;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
	.apply-hover-menu {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
	.apply-btn {
        width: 180px; /* Slightly smaller width for tablets */
        padding: 15px 20px;
        margin: 0;
        transform: none;
        font-size: 14px;
    }
    
    .apply-hover-menu {
        display: none;
    }
    
    .tab-content {
        padding: 40px 50px;
    }
}

@media (max-width: 767.98px) {
	.apply-hover-menu {
        display: block;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-btn {
        flex: 1;
        min-width: calc(50% - 2.5px);
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .apply-hover-toggle {
        width: 44px;
        height: 44px;
    }
    
    .apply-hover-dropdown {
        min-width: 180px;
    }
    
    .tab-pane h3 {
        font-size: 1.3rem;
    }
}